Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for strnames (0.23 sec)

  1. src/runtime/pprof/pprof.go

    // [Profile.Add] or [Profile.Remove] method call.
    //
    // The CPU profile is not available as a Profile. It has a special API,
    // the [StartCPUProfile] and [StopCPUProfile] functions, because it streams
    // output to a writer during profiling.
    //
    // # Heap profile
    //
    // The heap profile reports statistics as of the most recently completed
    // garbage collection; it elides more recent allocation to avoid skewing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import org.gradle.jvm.toolchain.internal.ToolchainConfiguration;
    import org.gradle.launcher.cli.DefaultCommandLineActionFactory;
    import org.gradle.launcher.daemon.configuration.DaemonBuildOptions;
    import org.gradle.process.internal.streams.SafeStreams;
    import org.gradle.test.fixtures.ResettableExpectations;
    import org.gradle.test.fixtures.file.TestDirectoryProvider;
    import org.gradle.test.fixtures.file.TestFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    	}
    }
    
    // newS2CompressReader will read data from r, compress it and return the compressed data as a Reader.
    // Use Close to ensure resources are released on incomplete streams.
    //
    // input 'on' is always recommended such that this function works
    // properly, because we do not wish to create an object even if
    // client closed the stream prematurely.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    		// after the timeout can take a while.
    		//
    		// After the signal is delivered, the test process may have up to one
    		// additional WaitDelay to finish writing its output streams.
    		if testWaitDelay < 1*time.Minute {
    			testKillTimeout = testTimeout + 1*time.Minute
    		} else {
    			testKillTimeout = testTimeout + testWaitDelay
    		}
    	}
    
    	// Read testcache expiration time, if present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/os/exec/exec.go

    	// are inherited by the child process.
    	childIOFiles []io.Closer
    
    	// parentIOPipes holds closers for the parent's end of any pipes
    	// connected to the child's stdin, stdout, and/or stderr streams
    	// that were opened by the Cmd itself (not supplied by the caller).
    	// These should be closed after Wait sees the command and copying
    	// goroutines exit, or after WaitDelay has expired.
    	parentIOPipes []io.Closer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    				merged = append(merged, latest)
    
    				// Calculate latest 'n' non-free versions.
    				if !latest.header.FreeVersion() {
    					nVersions++
    				}
    			}
    		}
    
    		// Remove from all streams up until latest modtime or if selected.
    		for i, vers := range versions {
    			for _, ver := range vers {
    				// Truncate later modtimes, not selected.
    				if ver.header.ModTime > latest.header.ModTime {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.cache.internal.streams.BlockAddress> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BlockAddress.java:0)
    Class <org.gradle.cache.internal.streams.BlockAddressSerializer> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BlockAddressSerializer.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	if http2isNoCachedConnError(err) {
    		// Issue 16582: if the user started a bunch of
    		// requests at once, they can all pick the same conn
    		// and violate the server's max concurrent streams.
    		// Instead, match the HTTP/1 behavior for now and dial
    		// again to get a new TCP connection, rather than failing
    		// this request.
    		return true
    	}
    	if err == errMissingHost {
    		// User error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    			errs = appendErrors(errs, fmt.Errorf("use client protocol must not be true when H2UpgradePolicy is UPGRADE"))
    		}
    		if httpSettings.MaxConcurrentStreams < 0 {
    			errs = appendErrors(errs, fmt.Errorf("max concurrent streams must be non-negative"))
    		}
    	}
    
    	if tcp := settings.Tcp; tcp != nil {
    		if tcp.MaxConnections < 0 {
    			errs = appendErrors(errs, fmt.Errorf("max connections must be non-negative"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    		// let the foo response finish so we can use its connection for /bar.
    
    		if mode == http2Mode {
    			// In HTTP/2 mode, the second Dial won't happen because the protocol
    			// multiplexes the streams by default. Just sleep for an arbitrary time;
    			// the test should pass regardless of how far the bar request gets by this
    			// point.
    			select {
    			case <-dialing:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top