Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for homes (0.04 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *
         * * **Unreachable IP addresses.** If the URL's host has multiple IP addresses,
         *   failure to reach any individual IP address doesn't fail the overall request. This can
         *   increase availability of multi-homed services.
         *
         * * **Stale pooled connections.** The [ConnectionPool] reuses sockets
         *   to decrease request latency, but these connections will occasionally time out.
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        systemPath = systemPath.replace('/', File.separatorChar).replace('\\', File.separatorChar);
                        String jdkHome = request.getSystemProperties().get("java.home") + File.separator + "..";
                        if (systemPath.startsWith(jdkHome)) {
                            msg += ". Please verify that you run Maven using a JDK and not just a JRE.";
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. fastapi/param_functions.py

            Optional[Sequence[str]],
            Doc(
                """
                OAuth2 scopes required for the *path operation* that uses this Security
                dependency.
    
                The term "scope" comes from the OAuth2 specification, it seems to be
                intentionaly vague and interpretable. It normally refers to permissions,
                in cases to roles.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    			services12,
    			virtualServices1,
    			[]*Service{
    				{
    					Hostname: "foo.svc.cluster.local",
    					// Ports should not be merged even though virtual service will select the service with 7443
    					// as ns1 comes before ns2, because 8000 was already picked explicitly and is in different namespace
    					Ports: port8000,
    				},
    				{
    					Hostname: "baz.svc.cluster.local",
    					Ports:    port7443,
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Calls {@code next()} on {@code iterator}, either {@code numberToAdvance} times or until {@code
       * hasNext()} returns {@code false}, whichever comes first.
       *
       * @return the number of elements the iterator was advanced
       * @since 13.0 (since 3.0 as {@code Iterators.skip})
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/CharMatcher.java

        int pos = indexIn(string);
        if (pos == -1) {
          return string;
        }
    
        char[] chars = string.toCharArray();
        int spread = 1;
    
        // This unusual loop comes from extensive benchmarking
        OUT:
        while (true) {
          pos++;
          while (true) {
            if (pos == chars.length) {
              break OUT;
            }
            if (matches(chars[pos])) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Calls {@code next()} on {@code iterator}, either {@code numberToAdvance} times or until {@code
       * hasNext()} returns {@code false}, whichever comes first.
       *
       * @return the number of elements the iterator was advanced
       * @since 13.0 (since 3.0 as {@code Iterators.skip})
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    		containsNodeIP := false
    		var allEndpointsTerminating, allEndpointsNonServing bool
    		someEndpointsServing := true
    
    		if len(svcInfo.loadBalancerIngressIPs) > 0 {
    			// Check should be done only if comes under the feature gate or enabled
    			// The check should be done only if Spec.Type == Loadbalancer.
    			allEndpointsTerminating = proxier.isAllEndpointsTerminating(svcName, svcInfo.localTrafficDSR)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	}
    	if err != nil {
    		// UserHomeDir may return a non-nil error if the environment variable
    		// for the home directory is empty or unset in the environment.
    		t.Skipf("skipping: %v", err)
    	}
    
    	fi, err := Stat(dir)
    	if err != nil {
    		if IsNotExist(err) {
    			// The user's home directory has a well-defined location, but does not
    			// exist. (Maybe nothing has written to it yet? That could happen, for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    	"k8s.io/kubernetes/pkg/controller/util/selectors"
    )
    
    var (
    	scaleUpLimitFactor  = 2.0
    	scaleUpLimitMinimum = 4.0
    )
    
    var (
    	// errSpec is used to determine if the error comes from the spec of HPA object in reconcileAutoscaler.
    	// All such errors should have this error as a root error so that the upstream function can distinguish spec errors from internal errors.
    	// e.g., fmt.Errorf("invalid spec%w", errSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top