Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 445 for Invokes (0.21 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            aTask.dependsOn(bTask)
    
            when:
            container.realize()
    
            then:
            0 * aTask.getTaskDependencies()
            0 * bTask.getTaskDependencies()
        }
    
        void "invokes rule at most once when locating a task"() {
            def rule = Mock(Rule)
    
            given:
            container.addRule(rule)
    
            when:
            def result = container.findByName("task")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    The following command runs the `test` task for all subprojects when invoked from the _root project directory_:
    
    ----
    $ gradle test
    ----
    
    NOTE: Some tasks selectors, like `help` or `dependencies`, will only run the task on the project they are invoked on and not on all the subprojects.
    
    When invoking Gradle from within a subproject, the project name should be omitted:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    // build list.
    //
    // loadPackages invokes the findPackage function for each package loaded from a
    // module outside the main module. If the module or version that supplies that
    // package needs to be changed due to a query, findPackage may return false
    // and the imports of that package will not be loaded.
    //
    // loadPackages also invokes the findPackage function for each imported package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.invoke.CallSite;
    import java.lang.invoke.LambdaMetafactory;
    import java.lang.invoke.MethodHandle;
    import java.lang.invoke.MethodHandles;
    import java.lang.invoke.MethodType;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.InvocationTargetException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. src/runtime/panic.go

    			//
    			// Note: We need to check this upfront (rather than after
    			// clearing the top bit) because it's possible that Goexit
    			// invokes a deferred call, and there were still more pending
    			// open-coded defers in the frame; but then the deferred call
    			// panic and invoked the remaining defers in the frame, before
    			// recovering and restarting the Goexit loop.
    			if bits == 0 {
    				p.deferBitsPtr = nil
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/helpdoc.go

    See https://golang.org/s/go15vendor for details.
    	`,
    }
    
    var HelpEnvironment = &base.Command{
    	UsageLine: "environment",
    	Short:     "environment variables",
    	Long: `
    
    The go command and the tools it invokes consult environment variables
    for configuration. If an environment variable is unset or empty, the go
    command uses a sensible default setting. To see the effective setting of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "LoweredAtomicOr32", argLength: 3, reg: gpstore, asm: "OR", faultOnNilArg0: true, hasSideEffects: true},
    
    		// LoweredWB invokes runtime.gcWriteBarrier. arg0=mem, auxint=# of buffer entries needed
    		// It preserves R0 through R17 (except special registers R1, R2, R11, R12, R13), g, and R20 and R21,
    		// but may clobber anything else, including R31 (REGTMP).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "WBend", argLength: 1, typ: "Mem"},                  // Write barrier code is done, interrupting is now allowed.
    
    	// WB invokes runtime.gcWriteBarrier.  This is not a normal
    	// call: it takes arguments in registers, doesn't clobber
    	// general-purpose registers (the exact clobber set is
    	// arch-dependent), and is not a safe-point.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // If the -exec flag is given, 'go run' invokes the binary using xprog:
    //
    //	'xprog a.out arguments...'.
    //
    // If the -exec flag is not given, GOOS or GOARCH is different from the system
    // default, and a program named go_$GOOS_$GOARCH_exec can be found
    // on the current search path, 'go run' invokes the binary using that program,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    	switch op {
    	case token.EQL, token.NEQ, token.LSS, token.LEQ, token.GTR, token.GEQ:
    		return true
    	}
    	return false
    }
    
    // updateExprType updates the type of x to typ and invokes itself
    // recursively for the operands of x, depending on expression kind.
    // If typ is still an untyped and not the final type, updateExprType
    // only updates the recorded untyped type for x and possibly its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top