Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for reopen (0.09 sec)

  1. src/net/testdata/single-request-reopen-resolv.conf

    options single-request-reopen...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 14:42:35 UTC 2019
    - 29 bytes
    - Viewed (0)
  2. .github/workflows/stale-issues.yml

              stale-issue-message: > 
                This issue is stale because it has been open for 7 days with no activity.
                It will be closed if no further activity occurs. Thank you.
              close-issue-message: >
                This issue was closed because it has been inactive for 7 days since being marked as stale.
                Please reopen if you'd like to work on this further.
              days-before-pr-stale: 14
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 23 20:04:38 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/net/dnsconfig_unix.go

    					n, _, _ := dtoi(s[9:])
    					if n < 1 {
    						n = 1
    					}
    					conf.attempts = n
    				case s == "rotate":
    					conf.rotate = true
    				case s == "single-request" || s == "single-request-reopen":
    					// Linux option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    					// "By default, glibc performs IPv4 and IPv6 lookups in parallel [...]
    					//  This option disables the behavior and makes glibc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

    import org.apache.maven.api.JavaPathType;
    import org.apache.maven.api.PathType;
    
    /**
     * Cache of {@link PathModularization} instances computed for given {@link Path} elements.
     * The cache is used for avoiding the need to reopen the same files many times when the
     * same dependency is used for different scope. For example a path used for compilation
     * is typically also used for tests.
     */
    class PathModularizationCache {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/os/stat_windows.go

    	}
    
    	fi, err := statHandle(name, h)
    	syscall.CloseHandle(h)
    	if err == nil && followSurrogates && fi.(*fileStat).isReparseTagNameSurrogate() {
    		// To obtain information about the link target, we reopen the file without
    		// FILE_FLAG_OPEN_REPARSE_POINT and examine the resulting handle.
    		// (See https://devblogs.microsoft.com/oldnewthing/20100212-00/?p=14963.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/net/dnsconfig_unix_test.go

    			ndots:         1,
    			singleRequest: true,
    			timeout:       5 * time.Second,
    			attempts:      2,
    			search:        []string{"domain.local."},
    		},
    	},
    	{
    		name: "testdata/single-request-reopen-resolv.conf",
    		want: &dnsConfig{
    			servers:       defaultNS,
    			ndots:         1,
    			singleRequest: true,
    			timeout:       5 * time.Second,
    			attempts:      2,
    			search:        []string{"domain.local."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

        public void write( byte[] b ) throws IOException {
            write( b, 0, b.length );
        }
    
        public boolean isOpen()
        {
            return file.isOpen();
        }
        void ensureOpen() throws IOException {
            // ensure file is open
            if( file.isOpen() == false ) {
                file.open( openFlags, access | SmbConstants.FILE_WRITE_DATA, SmbFile.ATTR_NORMAL, 0 );
                if( append ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheFactory.java

            this.executorFactory = executorFactory;
            this.buildOperationRunner = buildOperationRunner;
        }
    
        void onOpen(Object cache) {
        }
    
        void onClose(Object cache) {
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 15:54:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/DefaultEclipseWorkspaceProject.java

        private final String name;
        private final File location;
        private final boolean isOpen;
    
        public DefaultEclipseWorkspaceProject(String name, File location, boolean isOpen) {
            this.name = name;
            this.location = location;
            this.isOpen = isOpen;
        }
    
        public DefaultEclipseWorkspaceProject(String name, File location) {
            this(name, location, true);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseWorkspaceProject.java

        private final String name;
        private final File location;
        private final boolean isOpen;
    
        public DefaultEclipseWorkspaceProject(String name, File location, boolean isOpen) {
            this.name = name;
            this.location = location;
            this.isOpen = isOpen;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top