Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for fileNames (0.21 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * identical to the list returned by the parameterless <code>list()</code>
     * method minus filenames filtered by the specified filter.
     *
     * @param filter a filename filter to exclude filenames from the results
     * @throws SmbException
     # @return An array of filenames
     */
        public String[] list( SmbFilenameFilter filter ) throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	}
    
    	// We hash the compiler's full path to get a cache entry key.
    	// That cache entry holds a validation description,
    	// which is of the form:
    	//
    	//	filename \x00 statinfo \x00
    	//	...
    	//	compiler id
    	//
    	// If os.Stat of each filename matches statinfo,
    	// then the entry is still valid, and we can use the
    	// compiler id without any further expense.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // ListenAndServeTLS listens on the TCP network address srv.Addr and
    // then calls [ServeTLS] to handle requests on incoming TLS connections.
    // Accepted connections are configured to enable TCP keep-alives.
    //
    // Filenames containing a certificate and matching private key for the
    // server must be provided if neither the [Server]'s TLSConfig.Certificates
    // nor TLSConfig.GetCertificate are populated. If the certificate is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

    ## Downloads for v1.5.8
    
    
    filename | sha256 hash
    -------- | -----------
    [kubernetes.tar.gz](https://dl.k8s.io/v1.5.8/kubernetes.tar.gz) | `6a3fad3dcc3c59f926e5c0110d16edfc323fdd5482c83102b3f8068b420702db`
    [kubernetes-src.tar.gz](https://dl.k8s.io/v1.5.8/kubernetes-src.tar.gz) | `0a1fea0278f77a7ede1f64c05e8c69ba5ea2a9403d579db2247963e7869ff9e5`
    
    ### Client Binaries
    
    filename | sha256 hash
    -------- | -----------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.4.md

    ## Downloads for v1.4.12
    
    
    filename | sha256 hash
    -------- | -----------
    [kubernetes.tar.gz](https://dl.k8s.io/v1.4.12/kubernetes.tar.gz) | `f0d7ca7e1c92174c900d49087347d043b817eb589803eacc7727a84df9280ed2`
    [kubernetes-src.tar.gz](https://dl.k8s.io/v1.4.12/kubernetes-src.tar.gz) | `251835f258d79f186d8c715b18f2ccb93312270b35c22434b4ff27bc1de50eda`
    
    ### Client Binaries
    
    filename | sha256 hash
    -------- | -----------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetFileVersionInfoSize(filename string, zeroHandle *Handle) (bufSize uint32, err error) {
    	var _p0 *uint16
    	_p0, err = syscall.UTF16PtrFromString(filename)
    	if err != nil {
    		return
    	}
    	return _GetFileVersionInfoSize(_p0, zeroHandle)
    }
    
    func _GetFileVersionInfoSize(filename *uint16, zeroHandle *Handle) (bufSize uint32, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	dst.FileSizeHigh = src.FileSizeHigh
    	dst.FileSizeLow = src.FileSizeLow
    	dst.Reserved0 = src.Reserved0
    	dst.Reserved1 = src.Reserved1
    
    	// The src is 1 element bigger than dst, but it must be NUL.
    	copy(dst.FileName[:], src.FileName[:])
    	copy(dst.AlternateFileName[:], src.AlternateFileName[:])
    }
    
    type ByHandleFileInformation struct {
    	FileAttributes     uint32
    	CreationTime       Filetime
    	LastAccessTime     Filetime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    			adminLogIf(ctx, embedFileInZip(inspectZipW, "cluster.info", b, 0o600))
    		}
    	}
    
    	rawDataFn := func(r io.Reader, host, disk, filename string, si StatInfo) error {
    		// Prefix host+disk
    		filename = path.Join(host, disk, filename)
    		if si.Dir {
    			filename += "/"
    			si.Size = 0
    		}
    		if si.Mode == 0 {
    			// Not, set it to default.
    			si.Mode = 0o600
    		}
    		if si.ModTime.IsZero() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def localBuildCacheDir = executer.gradleUserHomeDir.file("caches/build-cache-1")
            def localBuildCacheFiles = localBuildCacheDir.list { dir, fileName -> fileName != "gc.properties" && fileName != "build-cache-1.lock" }
            localBuildCacheFiles.length == entryCount
    
            where:
            transformsDisabled   | entryCount
            "true"               | 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway_test.go

    							DefaultValidationContext: &auth.CertificateValidationContext{
    								Crl: &core.DataSource{
    									Specifier: &core.DataSource_Filename{
    										Filename: "/custom/path/to/crl.pem",
    									},
    								},
    							},
    							ValidationContextSdsSecretConfig: &auth.SdsSecretConfig{
    								Name: "ROOTCA",
    								SdsConfig: &core.ConfigSource{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
Back to top