Displaying 4 results from an estimated 4 matches for "lazyly".
Did you mean:
lazily
2015 Apr 27
3
Real sh? Or other efficient shell for non-interactive scripts
...tch (note that gpatch is not POSIX compliant).
> > Again, don't follow the agitation from OSS enemies. You are of course wrong!
>
> You don't have to 'follow' anything - just read the phrase 'work as a whole'.
You need to _understand_ the GPL and avoid to just lazyly read it as you did
before. The GPL does _not_ apply to _everything_. The GPL just applies to the
"work" that is under GPL. For the rest, you just need to include it under _any_
license and if you did ever carefully read the GPL, you of course did know that
already.
There are parts i...
2015 Apr 27
0
Real sh? Or other efficient shell for non-interactive scripts
...mpliant).
Larry is a nice guy. He doesn't want to cause trouble for anyone.
Apparently that's not universal....
>>
>> You don't have to 'follow' anything - just read the phrase 'work as a whole'.
>
> You need to _understand_ the GPL and avoid to just lazyly read it as you did
> before. The GPL does _not_ apply to _everything_. The GPL just applies to the
> "work" that is under GPL. For the rest, you just need to include it under _any_
> license and if you did ever carefully read the GPL, you of course did know that
> already.
I...
2015 Apr 27
2
Real sh? Or other efficient shell for non-interactive scripts
Les Mikesell <lesmikesell at gmail.com> wrote:
> On Mon, Apr 27, 2015 at 10:46 AM, Joerg Schilling
> <Joerg.Schilling at fokus.fraunhofer.de> wrote:
> > >
> > And the problem is the GPL. I recommend you to work on making all GPL code
> > freely combinable with other OSS.
>
> Of course the problem it the GPL. Glad you recognize that. It's
>
2020 Jan 03
10
Writing loop transformations on the right representation is more productive
...s to skip obviously bad transformations
3. Create new green nodes to represent the changed loop nest; reuse
unchanged green nodes as much as possible
4. Create a red node to insert into the parent
5. Preserve analyses (most analyses should be able to use analysis
stored in reused green nodes and/or lazyly reevaluate new nodes)
6. Check whether the transformation was valid
Especially the possibility to analyze the correctness after the
transformation was applied could significantly reduce the amount of
code needed to verify the correctness.
A transformation like loop fusion could look like:
void...