Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 369 for notexist (0.19 sec)

  1. src/os/removeall_noat.go

    	}
    
    	// Simple case: if Remove works, we're done.
    	err := Remove(path)
    	if err == nil || IsNotExist(err) {
    		return nil
    	}
    
    	// Otherwise, is this a directory we need to recurse into?
    	dir, serr := Lstat(path)
    	if serr != nil {
    		if serr, ok := serr.(*PathError); ok && (IsNotExist(serr.Err) || serr.Err == syscall.ENOTDIR) {
    			return nil
    		}
    		return serr
    	}
    	if !dir.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

                        final Document doc = builder.parse(is);
                        final NodeList nodeList = doc.getElementsByTagName("component");
                        for (int i = 0; i < nodeList.getLength(); i++) {
                            final Node node = nodeList.item(i);
                            final NamedNodeMap attributes = node.getAttributes();
                            if (attributes != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/os/removeall_at.go

    	}
    
    	// Simple case: if Remove works, we're done.
    	err := Remove(path)
    	if err == nil || IsNotExist(err) {
    		return nil
    	}
    
    	// RemoveAll recurses by deleting the path base from
    	// its parent directory
    	parentDir, base := splitPath(path)
    
    	parent, err := Open(parentDir)
    	if IsNotExist(err) {
    		// If parent does not exist, base cannot exist. Fail silently
    		return nil
    	}
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. pkg/volume/util/volumepathhandler/volume_path_handler.go

    		// Check if linkPath still exists
    		if _, err := os.Stat(linkPath); err != nil {
    			if !os.IsNotExist(err) {
    				return fmt.Errorf("failed to check if path %s exists: %v", linkPath, err)
    			}
    			// linkPath has already been removed
    			return nil
    		}
    		// Remove file
    		if err := os.Remove(linkPath); err != nil && !os.IsNotExist(err) {
    			return fmt.Errorf("failed to remove file %s: %v", linkPath, err)
    		}
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. src/run.rc

    rfork e
    
    if(! test -f ../bin/go){
    	echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2]
    	exit wrongdir
    }
    
    GOENV=off
    eval `{../bin/go tool dist env}
    
    GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 406 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_edit_no_modcache.txt

    # It does not otherwise depend on the module cache, so it should not
    # fail if the module cache directory cannot be created.
    
    [root] skip
    
    mkdir $WORK/readonly
    chmod 0555 $WORK/readonly
    env GOPATH=$WORK/readonly/nonexist
    
    go mod edit -go=1.17
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 21 14:10:22 UTC 2021
    - 419 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                final Document doc = builder.parse(is);
                final NodeList snapshotNodeList = doc.getElementsByTagName("snapshot");
                if (snapshotNodeList.getLength() > 0) {
                    final NodeList nodeList = snapshotNodeList.item(0).getChildNodes();
                    for (int i = 0; i < nodeList.getLength(); i++) {
                        final Node node = nodeList.item(i);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  8. pkg/util/removeall/removeall.go

    	// Simple case: if Remove works, we're done.
    	err := remove(path)
    	if err == nil || os.IsNotExist(err) {
    		return nil
    	}
    
    	// Otherwise, is this a directory we need to recurse into?
    	dir, serr := os.Lstat(path)
    	if serr != nil {
    		if serr, ok := serr.(*os.PathError); ok && (os.IsNotExist(serr.Err) || serr.Err == syscall.ENOTDIR) {
    			return nil
    		}
    		return serr
    	}
    	if !dir.IsDir() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  9. src/crypto/x509/root_plan9.go

    	var bestErr error
    	for _, file := range certFiles {
    		data, err := os.ReadFile(file)
    		if err == nil {
    			roots.AppendCertsFromPEM(data)
    			return roots, nil
    		}
    		if bestErr == nil || (os.IsNotExist(bestErr) && !os.IsNotExist(err)) {
    			bestErr = err
    		}
    	}
    	if bestErr == nil {
    		return roots, nil
    	}
    	return nil, bestErr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 828 bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

            pom?.inceptionYear[0]?.text()
        }
    
        Node getOrganization() {
            return pom?.organization[0]
        }
    
        NodeList getLicenses() {
            return pom?.licenses?.license
        }
    
        NodeList getDevelopers() {
            return pom?.developers?.developer
        }
    
        NodeList getContributors() {
            return pom?.contributors?.contributor
        }
    
        Node getScm() {
            return pom?.scm[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top