Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 404 for evacuatedX (0.34 sec)

  1. test/fixedbugs/issue28688.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    )
    
    // When using soft-float, OMUL might be rewritten to function
    // call so we should ensure it was evaluated first. Stack frame
    // setup for "test" function call should happen after call to runtime.fmul32
    
    var x int32 = 1
    
    func main() {
    	var y float32 = 1.0
    	test(x, y*y)
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 16:14:24 UTC 2021
    - 622 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_find.txt

    go mod init
    rm go.mod
    
    # GOPATH/src/link where GOPATH and link are both symlinks
    cd $GOPATH/src/link
    go mod init
    stderr link
    rm go.mod
    
    # Too hard: doesn't match unevaluated nor completely evaluated. (Only partially evaluated.)
    # Whether this works depends on which OS we are running on.
    # cd $WORK/gopath/src/link
    # ! go mod init
    
    -- $WORK/x/x.go --
    package x // import "x"
    
    -- $GOPATH/src/example.com/x/y/y.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ProcessForkOptions.java

        /**
         * Sets the working directory for the process. The supplied argument is evaluated as per {@link
         * org.gradle.api.Project#file(Object)}.
         *
         * @param dir The working directory. Must not be null.
         */
        void setWorkingDir(Object dir);
    
        /**
         * Sets the working directory for the process. The supplied argument is evaluated as per {@link
         * org.gradle.api.Project#file(Object)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildLogger.java

        }
    
        @Override
        public void settingsEvaluated(Settings settings) {
            SettingsInternal settingsInternal = (SettingsInternal) settings;
            if (logger.isInfoEnabled()) {
                logger.info("Settings evaluated using {}.",
                    settingsInternal.getSettingsScript().getDisplayName());
            }
        }
    
        @Override
        public void projectsLoaded(Gradle gradle) {
            if (logger.isInfoEnabled()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 04 18:57:43 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    					},
    				},
    			},
    			messageEvaluations: []cel.EvaluationResult{
    				{
    					EvalResult: celtypes.String("evaluated message"),
    				},
    			},
    			policyDecision: []PolicyDecision{
    				{
    					Action:  ActionDeny,
    					Message: "evaluated message",
    					Reason:  forbiddenReason,
    				},
    			},
    		},
    		{
    			name: "messageExpression for multiple validations",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/custom-logger-init.gradle

        public void beforeEvaluate(Project project) {
            logger.lifecycle("LOGGER: evaluating $project.path")
        }
    
        public void afterEvaluate(Project project, ProjectState state) {
            logger.info("LOGGER: evaluated project $project.path")
        }
    
        public void beforeExecute(Task task) {
            logger.lifecycle("LOGGER: executing $task.path")
        }
    
        public void afterExecute(Task task, TaskState state) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/types.go

    	//'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.
    	//  For example, a variable named 'foo' can be accessed as 'variables.foo'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/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: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySubstitutions.java

         *         dependency.useTarget "org.myorg:" + dependency.requested.path + ":+"
         *       }
         *     }
         *   }
         * }
         * </pre>
         *
         * The rules are evaluated in order they are declared. Rules are evaluated after forced modules are applied (see {@link ResolutionStrategy#force(Object...)}
         *
         * @return this
         */
        DependencySubstitutions all(Action<? super DependencySubstitution> rule);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 24 20:12:31 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. 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)
Back to top