Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 440 for evacuatedN (0.28 sec)

  1. test/fixedbugs/issue23188.go

    package main
    
    func main() {
    	arr := []int{1, 2}
    
    	// The spec says that in an assignment statement the operands
    	// of all index expressions and pointer indirections on the
    	// left, and the expressions on the right, are evaluated in
    	// the usual order. The usual order means function calls and
    	// channel operations are done first. Then the assignments are
    	// carried out one at a time. The operands of an index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 10 21:30:26 UTC 2018
    - 943 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/ObjectFilesToBinary.java

     */
    public interface ObjectFilesToBinary extends Task {
        /**
         * Adds a set of object files to be combined into the file binary.
         * The provided source object is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         */
        void source(Object source);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/tasks/SourceTask.java

         * Sets the source for this task. The given source object is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         *
         * @param source The source.
         */
        public void setSource(Object source) {
            sourceFiles = getProject().getObjects().fileCollection().from(source);
        }
    
        /**
         * Adds some source to this task. The given source objects will be evaluated as per {@link org.gradle.api.Project#files(Object...)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskDestroyables.java

    @HasInternalProtocol
    public interface TaskDestroyables {
        /**
         * Registers files or directories that this task destroys.
         *
         * @param paths The files or directories that will be destroyed. The given paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         *
         * @since 4.3
         */
        void register(Object... paths);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 14 16:39:36 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIntegrationTest.groovy

                            println("The parameter is `${taskParameter.get()}`")
                        }
                    }
    
                    // Expose dsl to the user, the value will be isolated only after settings has been fully evaluated
                    extensions.create<my.SettingsPluginDsl>("dsl").let { dsl ->
                        gradle.lifecycle.beforeProject {
                            tasks.register<CustomTask>("test") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 16:52:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/lookup_test.go

    	lookup := func() {
    		for _, name := range names {
    			typ := scope.Lookup(name).Type()
    			LookupFieldOrMethod(typ, true, pkg, "m")
    		}
    	}
    
    	// Perform a lookup once, to ensure that any lazily-evaluated state is
    	// complete.
    	lookup()
    
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		lookup()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 15:31:35 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/plugin/NonImperativeBuildScriptEvaluationIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class NonImperativeBuildScriptEvaluationIntegrationTest extends AbstractIntegrationSpec {
    
        def "all non-imperative script plugins applied to a project get evaluated"() {
            when:
            file("scriptPlugin1.gradle") << """
                model {
                    tasks {
                        create("fromScriptPlugin1")
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 15 00:59:45 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    request([ref](/pkg/apis/admission/types.go#AdmissionRequest)). - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value.\n  For example, a variable named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy_test.go

    	variablesType.Fields["unused"] = apiservercel.NewDeclField("unused", apiservercel.StringType, true, nil, nil)
    	variablesMap.Append("unused", func(_ *MapValue) ref.Val {
    		t.Fatalf("unused variable must not be evaluated")
    		return nil
    	})
    
    	exp = "variables.dict.a + ' ' + variables.dict.a + ' ' + variables.foo"
    	v, err = compileAndRun(env, activation, exp)
    	if err != nil {
    		t.Fatalf("%q: %v", exp, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    // The claims CEL variable is available to the expression.
    func (c compiler) CompileClaimsExpression(expressionAccessor ExpressionAccessor) (CompilationResult, error) {
    	return c.compile(expressionAccessor, claimsVarName)
    }
    
    // CompileUserExpression compiles the given expressionAccessor into a CEL program that can be evaluated.
    // The user CEL variable is available to the expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top