Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,356 for xoring (0.11 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockState.java

        /**
         * Registers a resource lock that has been unlocked during the transform so that the coordination service can
         * notify threads waiting on a lock.
         */
        void registerUnlocked(ResourceLock resourceLock);
    
        /**
         * Release any locks that have been acquired during the transform.
         */
        void releaseLocks();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/cel/interface.go

    	// really know what the return type is during compilation. Strict type checking
    	// is done during evaluation.
    	return []*celgo.Type{celgo.AnyType}
    }
    
    var _ ExpressionAccessor = &UserValidationCondition{}
    
    // UserValidationCondition is a CEL expression that validates a User.
    type UserValidationCondition struct {
    	Expression string
    	Message    string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    tasks.register("task3"){
        println("REGISTER TASK3: This is executed during the configuration phase")
    }
    
    tasks.named("task3"){
        println("NAMED TASK3: This is executed during the configuration phase")
        doFirst {
            println("NAMED TASK3 - doFirst: This is executed during the execution phase")
        }
        doLast {
            println("NAMED TASK3 - doLast: This is executed during the execution phase")
        }
    }
    ----
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

        /**
         * Gets the problems that were encountered during the project building.
         *
         * @return the problems that were encountered during the project building, can be empty but never {@code null}
         */
        @Nonnull
        List<ModelProblem> getProblems();
    
        /**
         * Creates a human readable representation of these errors.
         */
        String toString();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionErrorHandlingIntegrationTest.groovy

            output.count("The remote build cache was disabled during the build due to errors.") == 1
    
            when:
            cleanBuildDir()
            succeeds "secondTask"
    
            then: "build cache is still enabled during next build"
            !output.contains("The remote build cache was disabled during the build")
            output.count("> Attempting load") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/DevelocityPluginUnsafeConfigurationService.java

     * <p>
     * This is currently especially for ignoring configuration inputs that are handled differently in the
     * Develocity plugin.
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface DevelocityPluginUnsafeConfigurationService {
        /**
         * Run some code without tracking its inputs.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/crypto/purego_test.go

    	}
    	pkgs := strings.Split(strings.TrimSpace(string(out)), "\n")
    
    	cmd = exec.Command(testenv.GoToolPath(t), "tool", "dist", "list")
    	cmd.Stderr = os.Stderr
    	out, err = cmd.Output()
    	if err != nil {
    		log.Fatalf("loading architecture list: %v\n%s", err, out)
    	}
    	allGOARCH := make(map[string]bool)
    	for _, pair := range strings.Split(strings.TrimSpace(string(out)), "\n") {
    		GOARCH := strings.Split(pair, "/")[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphEdge.java

    import org.gradle.internal.component.model.DependencyMetadata;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link ResolvedGraphDependency} that is used during the resolution of the dependency graph.
     * Additional fields in this interface are not required to reconstitute the serialized graph, but are using during construction of the graph.
     */
    public interface DependencyGraphEdge extends ResolvedGraphDependency {
        DependencyGraphNode getFrom();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderResult.java

        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
         * {@link BuilderProblem.Severity#WARNING} and below are reported here. Problems with a higher severity level cause
         * the settings builder to fail with a {@link SettingsBuilderException}.
         *
         * @return the problems that were encountered during the settings building, can be empty but never {@code null}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderResult.java

        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
         * {@link BuilderProblem.Severity#WARNING} and below are reported here. Problems with a higher severity level cause
         * the settings builder to fail with a {@link ToolchainsBuilderException}.
         *
         * @return the problems that were encountered during the settings building, can be empty but never {@code null}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top