Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,387 for xoring (0.09 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. 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)
  3. 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)
  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/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerCppBuildExportIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.CppLib
    
    class SwiftPackageManagerCppBuildExportIntegrationTest extends AbstractSwiftPackageManagerExportIntegrationTest {
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "produces manifest for single project C++ library that defines only the production targets"() {
            given:
            buildFile << """
                plugins {
                    id 'swiftpm-export'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/LifecycleAwareValue.java

         */
        void prepareValue();
    
        /**
         * Called after the completion of the unit of work, regardless of the outcome. The property implementation can release any state that was cached during execution.
         */
        void cleanupValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 16 18:04:59 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotHierarchy.java

        /**
         * Returns the metadata stored at the absolute path if it exists.
         */
        Optional<MetadataSnapshot> findMetadata(String absolutePath);
    
        /**
         * Returns the snapshot stored at the absolute path if one exists.
         */
        default Optional<FileSystemLocationSnapshot> findSnapshot(String absolutePath) {
            return findMetadata(absolutePath)
                .filter(FileSystemLocationSnapshot.class::isInstance)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top