Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,059 for reasons (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationResult.java

    import java.util.Set;
    
    /**
     * This operation represents the work of analyzing the task's inputs plus the calculating the cache key.
     *
     * <p>
     * These two operations should be captured separately, but for historical reasons we don't yet do that.
     * To reproduce this composite operation we capture across executors by starting an operation
     * in {@link MarkSnapshottingInputsStartedStep} and finished in {@link MarkSnapshottingInputsFinishedStep}.
     * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:20:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelNormalizer.java

         */
        Model mergeDuplicates(Model model, ModelBuilderRequest request, ModelProblemCollector problems);
    
        /**
         * Sets default values in the specified model that for technical reasons cannot be set directly in the Modello
         * definition.
         *
         * @param model The model in which to set the default values, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

         *
         * Note that reused work times might be different to what it would actually take to execute the work
         * in the current build for a number of reasons:
         *
         * <ul>
         *     <li>reused work could have happened on a remote machine with different hardware capabilities,</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/crypto/crypto.go

    	}
    	hashes[h] = f
    }
    
    // PublicKey represents a public key using an unspecified algorithm.
    //
    // Although this type is an empty interface for backwards compatibility reasons,
    // all public key types in the standard library implement the following interface
    //
    //	interface{
    //	    Equal(x crypto.PublicKey) bool
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/ExtensionRealmCache.java

    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    
    /**
     * Caches extension class realms. <strong>Warning:</strong> This is an internal utility interface that is only public
     * for technical reasons, it is not part of the public API. In particular, this interface can be changed or deleted
     * without prior notice.
     *
     */
    public interface ExtensionRealmCache {
        /**
         * A cache key.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/PluginArtifactsCache.java

    import org.eclipse.aether.repository.RemoteRepository;
    
    /**
     * Caches plugin artifacts. <strong>Warning:</strong> This is an internal utility interface that is only public for
     * technical reasons, it is not part of the public API. In particular, this interface can be changed or deleted without
     * prior notice.
     *
     */
    public interface PluginArtifactsCache {
    
        /**
         * A cache key.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/os/exec/lp_linux_test.go

    	tmp := t.TempDir()
    
    	// Create a tmpfs mount.
    	err := syscall.Mount("tmpfs", tmp, "tmpfs", 0, "")
    	if testenv.SyscallIsNotSupported(err) {
    		// Usually this means lack of CAP_SYS_ADMIN, but there might be
    		// other reasons, especially in restricted test environments.
    		t.Skipf("requires ability to mount tmpfs (%v)", err)
    	} else if err != nil {
    		t.Fatalf("mount %s failed: %v", tmp, err)
    	}
    	t.Cleanup(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:02:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java

    import org.eclipse.aether.repository.RemoteRepository;
    
    /**
     * Caches plugin class realms. <strong>Warning:</strong> This is an internal utility interface that is only public for
     * technical reasons, it is not part of the public API. In particular, this interface can be changed or deleted without
     * prior notice.
     *
     */
    public interface PluginRealmCache {
        /**
         * CacheRecord
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. internal/disk/directio_unsupported.go

    // the O_DIRECT symbol may not be exposed resulting in a failed build.
    //
    //
    // On illumos an explicit O_DIRECT flag is not necessary for two primary
    // reasons. Note that ZFS is effectively the default filesystem on illumos
    // systems.
    //
    // One benefit of using DirectIO on Linux is that the page cache will not be
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/normalization/ModelNormalizer.java

         */
        void mergeDuplicates(Model model, ModelBuildingRequest request, ModelProblemCollector problems);
    
        /**
         * Sets default values in the specified model that for technical reasons cannot be set directly in the Modello
         * definition.
         *
         * @param model The model in which to set the default values, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top