Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for strnames (0.18 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	"--horizontal-pod-autoscaler-downscale-stabilization=3m",
    	"--horizontal-pod-autoscaler-cpu-initialization-period=90s",
    	"--horizontal-pod-autoscaler-initial-readiness-delay=50s",
    	"--http2-max-streams-per-connection=47",
    	"--kube-api-burst=100",
    	"--kube-api-content-type=application/json",
    	"--kube-api-qps=50.0",
    	"--kubeconfig=/kubeconfig",
    	"--large-cluster-size-threshold=100",
    	"--leader-elect=false",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Live JVM state types (e.g. `ClassLoader`, `Thread`, `OutputStream`, `Socket` etc...) are simply disallowed.
    These types almost never represent a task input or output.
    The only exceptions are the standard streams: `System.in`, `System.out`, and `System.err`.
    These streams can be used, for example, as parameters to link:{groovyDslPath}/org.gradle.api.tasks.Exec.html[`Exec`] and link:{groovyDslPath}/org.gradle.api.tasks.JavaExec.html[`JavaExec`] tasks.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. 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)
  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. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
            // else fall back to default log level specified in conf
            // see https://issues.apache.org/jira/browse/MNG-2570
    
            // LOG STREAMS
            if (commandLine.hasOption(CLIManager.LOG_FILE)) {
                File logFile = new File(commandLine.getOptionValue(CLIManager.LOG_FILE));
                logFile = resolveFile(logFile, cliRequest.workingDirectory);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K 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. src/net/dnsclient_unix_test.go

    			}
    			if !de.IsNotFound {
    				t.Fatalf("IsNotFound = %v wanted true", de.IsNotFound)
    			}
    		})
    	}
    }
    
    // Issue 26573: verify that Conns that don't implement PacketConn are treated
    // as streams even when udp was requested.
    func TestDNSDialTCP(t *testing.T) {
    	fake := fakeDNSServer{
    		rh: func(n, _ string, q dnsmessage.Message, _ time.Time) (dnsmessage.Message, error) {
    			r := dnsmessage.Message{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Multimaps.java

       * specified supplier. Each input element is mapped to a key and a stream of values, each of which
       * are put into the resulting {@code Multimap}, in the encounter order of the stream and the
       * encounter order of the streams of values.
       *
       * <p>Example:
       *
       * <pre>{@code
       * static final ListMultimap<Character, Character> FIRST_LETTER_MULTIMAP =
       *     Stream.of("banana", "apple", "carrot", "asparagus", "cherry")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Sets.java

       *
       * <p><b>Java 8+ users:</b> many use cases for this method are better addressed by {@link
       * java.util.stream.Stream#filter}. This method is not being deprecated, but we gently encourage
       * you to migrate to streams.
       */
      // TODO(kevinb): how to omit that last sentence when building GWT javadoc?
      public static <E extends @Nullable Object> Set<E> filter(
          Set<E> unfiltered, Predicate<? super E> predicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  10. 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)
Back to top