Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for FReopen (0.16 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    inline FILE* FOpen(const char* path, const char* mode) {
      return fopen(path, mode);
    }
    #if !GTEST_OS_WINDOWS_MOBILE
    inline FILE *FReopen(const char* path, const char* mode, FILE* stream) {
      return freopen(path, mode, stream);
    }
    inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); }
    #endif
    inline int FClose(FILE* fp) { return fclose(fp); }
    #if !GTEST_OS_WINDOWS_MOBILE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    inline FILE* FOpen(const char* path, const char* mode) {
      return fopen(path, mode);
    }
    #if !GTEST_OS_WINDOWS_MOBILE
    inline FILE *FReopen(const char* path, const char* mode, FILE* stream) {
      return freopen(path, mode, stream);
    }
    inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); }
    #endif
    inline int FClose(FILE* fp) { return fclose(fp); }
    #if !GTEST_OS_WINDOWS_MOBILE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. 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)
  4. .github/workflows/stale-issues.yml

                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
              days-before-pr-close: 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)
  5. 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)
  6. pkg/kubelet/logs/container_log_manager.go

    		if err = c.runtimeService.ReopenContainerLog(ctx, id); err != nil {
    			klog.ErrorS(err, "Container log doesn't exist, reopen container log failed", "worker", worker, "containerID", id, "path", path)
    			return
    		}
    
    		info, err = c.osInterface.Stat(path)
    		if err != nil {
    			klog.ErrorS(err, "Failed to stat container log after reopen", "worker", worker, "containerID", id, "path", path)
    			return
    		}
    	}
    	if info.Size() < c.policy.MaxSize {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					// TODO: find a more elegant approach to synchronizing returning requests
    					if(this.data.core.reopen) { clearTimeout(this.data.core.reopen); }
    					this.data.core.reopen = setTimeout(function () { _this.__callback({}, _this); }, 50);
    					this.data.core.refreshing = false;
    					this.reopen();
    				}
    			},
    			reopen : function () {
    				var _this = this;
    				if(this.data.core.to_open.length) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top