Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 206 for Shardz (0.11 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                result = connection.receive();
            } catch (StaleDaemonAddressException e) {
                LOGGER.debug("Connected to a stale daemon address.", e);
                // We might fail hard here on the assumption that something weird happened to the daemon.
                // However, since we haven't yet started running the build, we can recover by just trying again.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    	// fourth of the time of its allotted deadline.
    	// b) if the request context does not have any deadline
    	// then we default to 'defaultRequestWaitLimit'
    	// in any case, the wait limit for any request must not
    	// exceed the hard limit of 1m
    	//
    	// request has deadline:
    	//   wait-limit = min(remaining deadline / 4, 1m)
    	// request has no deadline:
    	//   wait-limit = min(defaultRequestWaitLimit, 1m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * <p>
         * Specifies the path of an alternate help file path\filename that the HELP link in the top and bottom navigation bars link to. Without this option, the Javadoc tool automatically creates a help file help-doc.html that is hard-coded in the Javadoc tool. This option enables you to override this default. The filename can be any name and is not restricted to help-doc.html -- the Javadoc tool will adjust the links in the navigation bar accordingly. For example:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	// timeouts to cancel existing streams. 3 is currently a hard coded
    	// constant. The election timeout defaults to 1000ms. If the cluster is
    	// healthy, when the leader is stopped, the leadership transfer should be
    	// smooth. (leader transfers its leadership before stopping). If leader is
    	// hard killed, other servers will take an election timeout to realize
    	// leader lost and start campaign.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    	if o := pkg.Scope().Lookup(name); o != nil {
    		return []types.Object{o}
    	}
    
    	var ret []types.Object
    	// Search through the imports to see if any of them define name.
    	// It's hard to tell in general which package is being tested, so
    	// for the purposes of the analysis, allow the object to appear
    	// in any of the imports. This guarantees there are no false positives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

                }
            """
    
            expect:
            succeeds(":resolve", "--stacktrace")
        }
    
        @NotYetImplemented
        def "caability conflict causes cannot decrease hard edge count assertion"() {
            buildFile << """
                ${header}
                ${mavenCentralRepository()}
    
                ${selectHighest("org.dom4j:dom4j")}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

            // The elements configurations' roles should always be consumable only, but
            // some users of this class are still migrating towards that. In 9.0, we can remove this
            // parameter and hard-code the elements configurations' roles to consumable only.
            boolean useMigrationRoleForElementsConfigurations,
            boolean extendProductionCode
        ) {
            this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. pkg/controller/nodeipam/ipam/sync/sync.go

    		return fmt.Errorf("controller cannot allocate CIDRS in mode %q", sync.mode)
    	}
    
    	cidrRange, err := sync.set.AllocateNext()
    	if err != nil {
    		return err
    	}
    	// If addAlias returns a hard error, cidrRange will be leaked as there
    	// is no durable record of the range. The missing space will be
    	// recovered on the next restart of the controller.
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/proxy.go

    				goproxy = goproxy[i+1:]
    			} else {
    				url = goproxy
    				goproxy = ""
    			}
    
    			url = strings.TrimSpace(url)
    			if url == "" {
    				continue
    			}
    			if url == "off" {
    				// "off" always fails hard, so can stop walking list.
    				proxyOnce.list = append(proxyOnce.list, proxySpec{url: "off"})
    				break
    			}
    			if url == "direct" {
    				proxyOnce.list = append(proxyOnce.list, proxySpec{url: "direct"})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/branchelim.go

    	dom.CopyControls(post)
    	dom.Aux = post.Aux
    	dom.Succs = append(dom.Succs[:0], post.Succs...)
    	for i := range dom.Succs {
    		e := dom.Succs[i]
    		e.b.Preds[e.i].b = dom
    	}
    
    	// Try really hard to preserve statement marks attached to blocks.
    	simplePos := simple.Pos
    	postPos := post.Pos
    	simpleStmt := simplePos.IsStmt() == src.PosIsStmt
    	postStmt := postPos.IsStmt() == src.PosIsStmt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
Back to top