Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,586 for reasons (0.5 sec)

  1. pkg/volume/volume_linux.go

    // a list of directory entries.
    // We are not using filepath.readDirNames because we do not want to sort files found in a directory before changing
    // permissions for performance reasons.
    func readDirNames(dirname string) ([]string, error) {
    	f, err := os.Open(dirname)
    	if err != nil {
    		return nil, err
    	}
    	names, err := f.Readdirnames(-1)
    	f.Close()
    	if err != nil {
    		return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. pkg/kubelet/reason_cache.go

    		}
    	}
    }
    
    // Remove removes error reason from the cache
    func (c *ReasonCache) Remove(uid types.UID, name string) {
    	c.lock.Lock()
    	defer c.lock.Unlock()
    	c.cache.Remove(c.composeKey(uid, name))
    }
    
    // Get gets error reason from the cache. The return values are error reason, error message and
    // whether an error reason is found in the cache. If no error reason is found, empty string will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top