Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 440 for evacuatedX (0.28 sec)

  1. pkg/apis/authorization/types.go

    // spec.namespace means "in all namespaces".
    type SubjectAccessReview struct {
    	metav1.TypeMeta
    	metav1.ObjectMeta
    
    	// Spec holds information about the request being evaluated
    	Spec SubjectAccessReviewSpec
    
    	// Status is filled in by the server and indicates whether the request is allowed or not
    	Status SubjectAccessReviewStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. test/fixedbugs/issue11987.go

    package main
    
    import "fmt"
    
    var v int64 = 0x80000000
    
    func main() {
    	s := fmt.Sprintf("%v", v>>32 == 0)
    	if s != "true" {
    		fmt.Printf("BUG: v>>32 == 0 evaluated as %q\n", s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 621 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. test/fixedbugs/issue16760.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure we don't start marshaling (writing to the stack)
    // arguments until those arguments are evaluated and known
    // not to unconditionally panic. If they unconditionally panic,
    // we write some args but never do the call. That messes up
    // the logic which decides how big the argout section needs to be.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 22 22:53:51 UTC 2021
    - 796 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top