Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 655 for myfile (0.16 sec)

  1. src/syscall/tables_js.go

    	EEXIST:          "File exists",
    	EXDEV:           "Cross-device link",
    	ENODEV:          "No such device",
    	ENOTDIR:         "Not a directory",
    	EISDIR:          "Is a directory",
    	EINVAL:          "Invalid argument",
    	ENFILE:          "File table overflow",
    	EMFILE:          "Too many open files",
    	ENOTTY:          "Not a typewriter",
    	EFBIG:           "File too large",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/annotations/annotationsOnFiles/onFile.txt

    Ilya Kirillov <******@****.***> 1637343566 +0100
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 22 21:47:00 UTC 2021
    - 85 bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/modfile.go

    	if i == nil {
    		return modFile != nil
    	}
    
    	if i.dataNeedsFix {
    		return true
    	}
    
    	if modFile.Module == nil {
    		if i.module != (module.Version{}) {
    			return true
    		}
    	} else if modFile.Module.Mod != i.module {
    		return true
    	}
    
    	var goV, toolchain string
    	if modFile.Go != nil {
    		goV = modFile.Go.Version
    	}
    	if modFile.Toolchain != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

     * resources are files and directories however an <code>SmbFile</code>
     * 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>
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    
    /**
     * Changes the name of the file this <code>SmbFile</code> represents to the name
     * designated by the <code>SmbFile</code> argument.
     * <p/>
     * <i>Remember: <code>SmbFile</code>s are immutible and therefore
     * the path associated with this <code>SmbFile</code> object will not
     * change). To access the renamed file it is necessary to construct a
     * new <tt>SmbFile</tt></i>.
     *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  6. releasenotes/notes/psfile.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 141 bytes
    - Viewed (0)
  7. src/net/http/testdata/file

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 11 bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            configurationCache.assertStateStored()
        }
    
        def "file contents #usage used as build logic input"() {
    
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildKotlinFile """
                val ciFile = layout.projectDirectory.file("ci")
                val isCi = providers.fileContents(ciFile)
                if (isCi.$expression) {
                    tasks.register("run") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. src/net/cgo_unix.go

    				// The report claims that it happens when we have too many
    				// open files, so use syscall.EMFILE (too many open files in system).
    				// Most system calls would return ENFILE (too many open files),
    				// so at the least EMFILE should be easy to recognize if this
    				// comes up again. golang.org/issue/6232.
    				err = syscall.EMFILE
    			}
    			return nil, newDNSError(err, name, "")
    		case _C_EAI_NONAME, _C_EAI_NODATA:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/internal/coverage/pods/pods_test.go

    	// Add some random files (not coverage related)
    	mkfile(o1, "blah.txt")
    	mkfile(o1, "something.exe")
    
    	// Add a meta-data file with two counter files to first dir.
    	mkmeta(o1, "m1")
    	mkcounter(o1, "m1", 1, 42)
    	mkcounter(o1, "m1", 2, 41)
    	mkcounter(o1, "m1", 2, 40)
    
    	// Add a counter file with no associated meta file.
    	mkcounter(o1, "orphan", 9, 39)
    
    	// Add a meta-data file with three counter files to second dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 14:00:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top