Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CLOSURE (0.56 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            }
            assert output.count("into " + dirs.first()) == 1
        }
    
        TestFile outputDir(String from, String to, Closure<Set<TestFile>> determineOutputDirs = this.&allOutputDirs, Closure<String> stream = { output }) {
            def dirs = determineOutputDirs(from, to, stream)
            if (dirs.size() == 1) {
                return dirs.first()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		da.Arg.goString(indent+2, "Arg: "))
    }
    
    // Closure is a closure, or lambda expression.
    type Closure struct {
    	TemplateArgs           []AST
    	TemplateArgsConstraint AST
    	Types                  []AST
    	Num                    int
    	CallConstraint         AST
    }
    
    func (cl *Closure) print(ps *printState) {
    	if ps.llvmStyle {
    		if cl.Num == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

     * limitations under the License.
     */
    package org.gradle.internal.instantiation.generator;
    
    import com.google.common.collect.ImmutableSet;
    import groovy.lang.Closure;
    import groovy.lang.GroovyObject;
    import groovy.lang.GroovySystem;
    import groovy.lang.MetaClass;
    import groovy.lang.MetaClassRegistry;
    import org.gradle.api.Action;
    import org.gradle.api.Describable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  4. src/reflect/value.go

    // so that the linker can make it work correctly for panic and recover.
    // The gc compilers know to do that for the name "reflect.callReflect".
    //
    // ctxt is the "closure" generated by MakeFunc.
    // frame is a pointer to the arguments to that closure on the stack.
    // retValid points to a boolean which should be set when the results
    // section of frame is set.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "CALLclosure", argLength: -1, reg: regInfo{inputs: []regMask{gpsp, buildReg("DX"), 0}, clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true}, // call function via closure.  arg0=codeptr, arg1=closure, last arg=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  6. cmd/admin-handlers.go

    	// try this server to generate a new token.
    
    	type healResp struct {
    		respBytes []byte
    		apiErr    APIError
    		errBody   string
    	}
    
    	// Define a closure to start sending whitespace to client
    	// after 10s unless a response item comes in
    	keepConnLive := func(w http.ResponseWriter, r *http.Request, respCh chan healResp) {
    		ticker := time.NewTicker(time.Second * 10)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	// to 1.
    	haveTemplateThread uint32
    }
    
    // Create a new m. It will start off with a call to fn, or else the scheduler.
    // fn needs to be static and not a heap allocated closure.
    // May run with m.p==nil, so write barriers are not allowed.
    //
    // id is optional pre-allocated m ID. Omit by passing -1.
    //
    //go:nowritebarrierrec
    func newm(fn func(), pp *p, id int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top