Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 537 for FILE (0.05 sec)

  1. src/syscall/zerrors_linux_s390x.go

    	16:  "device or resource busy",
    	17:  "file exists",
    	18:  "invalid cross-device link",
    	19:  "no such device",
    	20:  "not a directory",
    	21:  "is a directory",
    	22:  "invalid argument",
    	23:  "too many open files in system",
    	24:  "too many open files",
    	25:  "inappropriate ioctl for device",
    	26:  "text file busy",
    	27:  "file too large",
    	28:  "no space left on device",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 73.3K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    				}
    				prev = p.tok
    
    				decls = append(decls, p.parseDecl(declStart))
    			}
    		}
    	}
    
    	f := &ast.File{
    		Doc:       doc,
    		Package:   pos,
    		Name:      ident,
    		Decls:     decls,
    		FileStart: token.Pos(p.file.Base()),
    		FileEnd:   token.Pos(p.file.Base() + p.file.Size()),
    		Imports:   p.imports,
    		Comments:  p.comments,
    		GoVersion: p.goVersion,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. src/syscall/zerrors_linux_ppc64le.go

    	16:  "device or resource busy",
    	17:  "file exists",
    	18:  "invalid cross-device link",
    	19:  "no such device",
    	20:  "not a directory",
    	21:  "is a directory",
    	22:  "invalid argument",
    	23:  "too many open files in system",
    	24:  "too many open files",
    	25:  "inappropriate ioctl for device",
    	26:  "text file busy",
    	27:  "file too large",
    	28:  "no space left on device",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    const gccExportHeaderEpilog = `
    #ifdef __cplusplus
    }
    #endif
    `
    
    // gccgoExportFileProlog is written to the _cgo_export.c file when
    // using gccgo.
    // We use weak declarations, and test the addresses, so that this code
    // works with older versions of gccgo.
    const gccgoExportFileProlog = `
    #line 1 "cgo-gccgo-export-file-prolog"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    feature _precompiles_ a header such that the compiled object file can be reused when compiling each source file rather than recompiling the header each time. This support is available for C, C+\+, Objective-C, and Objective-C++ builds.
    
    To configure a precompiled header, first a header file needs to be defined that includes all of the headers that should be precompiled. It must be specified as the first included header in every source file where the precompiled header should be used. It is assumed...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    } else if (!sysFile.isFile()) {
                        String msg = "refers to a non-existing file " + sysFile.getAbsolutePath();
                        systemPath = systemPath.replace('/', File.separatorChar).replace('\\', File.separatorChar);
                        String jdkHome = request.getSystemProperties().get("java.home") + File.separator + "..";
                        if (systemPath.startsWith(jdkHome)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{17, "ENOTEMPTY", "file exists"},
    	{18, "EXDEV", "cross-device link"},
    	{19, "ENODEV", "no such device"},
    	{20, "ENOTDIR", "not a directory"},
    	{21, "EISDIR", "is a directory"},
    	{22, "EINVAL", "invalid argument"},
    	{23, "ENFILE", "file table overflow"},
    	{24, "EMFILE", "too many open files"},
    	{25, "ENOTTY", "not a typewriter"},
    	{26, "ETXTBSY", "text file busy"},
    	{27, "EFBIG", "file too large"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_loong64.go

    	16:  "device or resource busy",
    	17:  "file exists",
    	18:  "invalid cross-device link",
    	19:  "no such device",
    	20:  "not a directory",
    	21:  "is a directory",
    	22:  "invalid argument",
    	23:  "too many open files in system",
    	24:  "too many open files",
    	25:  "inappropriate ioctl for device",
    	26:  "text file busy",
    	27:  "file too large",
    	28:  "no space left on device",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    		}
    
    		if _, ok := rs.rootSelected(pkg.mod.Path); ok {
    			// It is possible that the main module's go.mod file is incomplete or
    			// otherwise erroneous — for example, perhaps the author forgot to 'git
    			// add' their updated go.mod file after adding a new package import, or
    			// perhaps they made an edit to the go.mod file using a third-party tool
    			// ('git merge'?) that doesn't maintain consistency for module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         */
        @Override
        public boolean contains(File file) {
            warnOnInvalidInternalAPIUsage("contains(File)", ProperMethodUsage.RESOLVABLE);
            return getIntrinsicFiles().contains(file);
        }
    
        @Override
        public boolean isEmpty() {
            return getIntrinsicFiles().isEmpty();
        }
    
        @Override
        @Deprecated
        public Set<File> files(Dependency... dependencies) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top