Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 343 for evacuatedX (0.15 sec)

  1. 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)
  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/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)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/PublicationArtifact.java

        /**
         * The actual file contents to publish.
         */
        File getFile();
    
        /**
         * Registers some tasks which build this artifact.
         *
         * @param tasks The tasks. These are evaluated as per {@link org.gradle.api.Task#dependsOn(Object...)}.
         */
        void builtBy(Object... tasks);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/featurelifecycle/StackTraceSanitizerTest.groovy

    import static SimulatedSingleMessageLogger.INDIRECT_CALL
    import static SimulatedSingleMessageLogger.INDIRECT_CALL_2
    
    @Subject(StackTraceSanitizer)
    class StackTraceSanitizerTest extends Specification {
    
        def "stack is evaluated correctly for #callLocationClass.simpleName and #expectedSummary. #expectedMethod. #usage."() {
            given:
            def stack = new StackTraceSanitizer(usage.calledFrom).transform(usage.exception.stackTrace)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ModelBuilder.java

         * ':included-build-name:subproject-name:taskName'}).</p>
         *
         * @param tasks The paths of the tasks to be executed. Relative paths are evaluated relative to the project for which this launcher was created.
         * @return this
         * @since 1.2
         */
        ModelBuilder<T> forTasks(String... tasks);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. guava/src/com/google/common/base/Predicates.java

        return new NotPredicate<>(predicate);
      }
    
      /**
       * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
       * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
       * as soon as a false predicate is found. It defensively copies the iterable passed in, so future
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/internal/AfterEvaluateHelper.java

     */
    public class AfterEvaluateHelper {
    
        /**
         * Registers the target action in {@code project.afterEvaluate} or calls it directly if the target project has been already evaluated.
         *
         * @param project The target project.
         * @param action The target action.
         */
        public static void afterEvaluateOrExecute(Project project, Action<Project> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top