Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,579 for reasons (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java

    import org.apache.maven.project.MavenProject;
    import org.eclipse.aether.RepositorySystemSession;
    
    /**
     * Caches project 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 ProjectArtifactsCache {
    
        /**
         * A cache key.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:34:19 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingState.java

            return new CachingState(Either.right(new Disabled(disabledReasons, cacheKeyCalculatedState)));
        }
    
        public static CachingState disabledWithoutInputs(CachingDisabledReason reason) {
            return disabled(ImmutableList.of(reason), null, null);
        }
    
        public Optional<Enabled> whenEnabled() {
            return delegate.getLeft();
        }
    
        public Optional<Disabled> whenDisabled() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultExecutionEventCatapult.java

    import org.apache.maven.plugin.MojoExecution;
    
    /**
     * Assists in firing execution events. <strong>Warning:</strong> This is an internal utility class that is only public
     * for technical reasons, it is not part of the public API. In particular, this class can be changed or deleted without
     * prior notice.
     *
     */
    @Named
    @Singleton
    public class DefaultExecutionEventCatapult implements ExecutionEventCatapult {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top