Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 189 for pathnames (0.15 sec)

  1. pkg/volume/hostpath/host_path.go

    	}
    
    	return nil
    }
    
    // makeDir creates a new directory.
    // If pathname already exists as a directory, no error is returned.
    // If pathname already exists as a file, an error is returned.
    func makeDir(pathname string) error {
    	err := os.MkdirAll(pathname, os.FileMode(0755))
    	if err != nil {
    		if !os.IsExist(err) {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/list_goroot_symlink.txt

    [short] skip 'copies the cmd/go binary'
    [!symlink] skip 'tests symlink-specific behavior'
    [GOOS:darwin] skip 'Lstat on darwin does not conform to POSIX pathname resolution; see #59586'
    [GOOS:ios] skip 'Lstat on ios does not conform to POSIX pathname resolution; see #59586'
    
    # Ensure that the relative path to $WORK/lib/goroot/src from $PWD is a different
    # number of ".." hops than the relative path to it from $WORK/share/goroot/src.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/AbstractWindowsKitComponentLocator.java

        private final FileFilter windowsKitVersionFilter = new FileFilter() {
            @Override
            public boolean accept(File pathname) {
                Matcher matcher = windowsKitVersionPattern.matcher(pathname.getName());
                return pathname.isDirectory() && matcher.matches();
            }
        };
    
        AbstractWindowsKitComponentLocator(WindowsRegistry windowsRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerimage.go

    	return &ContainerImageApplyConfiguration{}
    }
    
    // WithNames adds the given value to the Names field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Names field.
    func (b *ContainerImageApplyConfiguration) WithNames(values ...string) *ContainerImageApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. pkg/volume/util/subpath/subpath_unsupported.go

    	return subPath.Path, nil, errUnsupported
    }
    
    func (sp *subpath) CleanSubPaths(podDir string, volumeName string) error {
    	return errUnsupported
    }
    
    func (sp *subpath) SafeMakeDir(pathname string, base string, perm os.FileMode) error {
    	return errUnsupported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. src/os/tempfile.go

    // Multiple programs or goroutines calling CreateTemp simultaneously will not choose the same file.
    // The caller can use the file's Name method to find the pathname of the file.
    // It is the caller's responsibility to remove the file when it is no longer needed.
    func CreateTemp(dir, pattern string) (*File, error) {
    	if dir == "" {
    		dir = TempDir()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DefaultDaemonContext.java

            @Override
            public DefaultDaemonContext read(Decoder decoder) throws Exception {
                String uid = decoder.readNullableString();
                String pathname = decoder.readString();
                File javaHome = new File(pathname);
                JavaLanguageVersion javaVersion = JavaLanguageVersion.of(decoder.readSmallInt());
                File registryDir = new File(decoder.readString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/io/ioutil/tempfile.go

    // for temporary files (see [os.TempDir]).
    // Multiple programs calling TempFile simultaneously
    // will not choose the same file. The caller can use f.Name()
    // to find the pathname of the file. It is the caller's responsibility
    // to remove the file when no longer needed.
    //
    // Deprecated: As of Go 1.17, this function simply calls [os.CreateTemp].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/EarModule.java

        void setPath(String path);
    
        /**
         * The alt-dd element specifies an optional URI to the post-assembly version of the deployment descriptor file for a
         * particular Java EE module. The URI must specify the full pathname of the deployment descriptor file relative to
         * the application's root directory. If alt-dd is not specified, the deployer must read the deployment descriptor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

                @Override
                boolean accept(File pathname) {
                    return pathname.isFile()
                }
            })
    
            def dirs = file.listFiles(new FileFilter() {
                @Override
                boolean accept(File pathname) {
                    return pathname.isDirectory()
                }
            })
    
            def xml = new StreamingMarkupBuilder().bind {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top