Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 499 for FILE (0.05 sec)

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

     * may also refer to servers and workgroups. If the resource is a file or
     * directory the methods of <code>SmbFile</code> follow the behavior of
     * the well known {@link java.io.File} class. One fundamental difference
     * is the usage of a URL scheme [1] to specify the target file or
     * directory. SmbFile URLs have the following syntax:
     *
     * <blockquote>
     * 
     * <pre>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  2. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    				fakePodManager.AddPod(existingPod)
    				dswp.findAndAddNewPods()
    			}
    
    			newContainer := container
    			newContainer.SecurityContext.SELinuxOptions = tc.newContainerSELinuxOpts
    			newPod := createPodWithVolume("dswp-test-pod", "dswp-test-volume-name", "file-bound", []v1.Container{newContainer})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

      def _get_dir_size(self, path: str = '.'):
        """Get the total size of files and sub-directories under the path.
    
        Args:
          path: Path of a directory or a file to calculate the total size.
    
        Returns:
          Total size of the directory or a file.
        """
        total = 0
        for root, _, files in os.walk(path):
          for filename in files:
            total += os.path.getsize(os.path.join(root, filename))
        return total
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{26, "ETXTBSY", "text file busy"},
    	{27, "EFBIG", "file too large"},
    	{28, "ENOSPC", "no space left on device"},
    	{29, "ESPIPE", "illegal seek"},
    	{30, "EROFS", "read-only file system"},
    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "argument out of domain"},
    	{34, "ERANGE", "result too large"},
    	{35, "ENOMSG", "no message of desired type"},
    	{36, "EIDRM", "identifier removed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            otherConfiguration.artifacts.add(artifact2)
            configuration.extendsFrom(otherConfiguration)
    
            then:
            configuration.allArtifacts.files.files == [artifact1.file, artifact2.file] as Set
            configuration.allArtifacts.files.buildDependencies.getDependencies(Mock(Task)) == [artifactTask1, artifactTask2] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. src/cmd/go/go_test.go

    	}
    	dir := ""
    	for _, file := range strings.Split(tg.stdout.String(), "\n") {
    		if file == "" {
    			continue
    		}
    		if dir == "" {
    			dir = file
    			continue
    		}
    		if !strings.Contains(file, "/") && !strings.Contains(file, `\`) {
    			file = filepath.Join(dir, file)
    		}
    		if _, err := os.Stat(file); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_tls_test.go

    			expectTransportSocket:      true,
    			expectTransportSocketMatch: false,
    			validateTLSContext: func(t *testing.T, ctx *tls.UpstreamTlsContext) {
    				rootName := "file-root:" + mutualTLSSettingsWithCerts.CaCertificates
    				certName := fmt.Sprintf("file-cert:%s~%s", mutualTLSSettingsWithCerts.ClientCertificate, mutualTLSSettingsWithCerts.PrivateKey)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    	p.lineComment = nil
    	line := p.file.Line(p.pos) // current line
    	p.next0()
    
    	if p.tok == token.COMMENT {
    		var comment *ast.CommentGroup
    		var endline int
    
    		if p.file.Line(p.pos) == line {
    			// The comment is on same line as the previous token; it
    			// cannot be a lead comment but may be a line comment.
    			comment, endline = p.consumeCommentGroup()
    			if p.file.Line(p.pos) != endline {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    			// collect coverage data for the code in the package by
    			// asking cmd/cover for a static meta-data file as part of
    			// the package build. This static meta-data file is then
    			// consumed by a pseudo-action (writeCoverMetaAct) that
    			// adds it to a summary file, then this summary file is
    			// consumed by the various "run test" actions. Below we
    			// add a dependence edge between the build action and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy_test.go

    							TerminationMessagePolicy: "File",
    						},
    					},
    					EphemeralContainers: []api.EphemeralContainer{
    						{
    							EphemeralContainerCommon: api.EphemeralContainerCommon{
    								Name:                     "debugger",
    								Image:                    "image",
    								ImagePullPolicy:          "IfNotPresent",
    								TerminationMessagePolicy: "File",
    							},
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top