Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for OP (0.04 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    		expectedLbPolicy                   cluster.Cluster_LbPolicy
    		expectedLocalityWeightedConfig     bool
    		expectClusterLoadAssignmenttoBeNil bool
    	}{
    		{
    			name:             "ORIGINAL_DST discovery type is a no op",
    			discoveryType:    cluster.Cluster_ORIGINAL_DST,
    			expectedLbPolicy: cluster.Cluster_CLUSTER_PROVIDED,
    		},
    		{
    			name:             "redis protocol",
    			discoveryType:    cluster.Cluster_EDS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    // The -exclude=path@version and -dropexclude=path@version flags
    // add and drop an exclusion for the given module path and version.
    // Note that -exclude=path@version is a no-op if that exclusion already exists.
    //
    // The -replace=old[@v]=new[@v] flag adds a replacement of the given
    // module path and version pair. If the @v in old@v is omitted, a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      }
    
      /**
       * We explicitly permit apps to close the upload stream even after it has been transmitted.  We
       * also permit flush so that buffered streams can do a no-op flush when they are closed.
       * http://b/3038470
       */
      private fun testFlushAfterStreamTransmitted(transferKind: TransferKind) {
        server.enqueue(
          MockResponse(body = "abc"),
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        },
        "io.k8s.api.core.v1.PreferredSchedulingTerm": {
          "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
          "properties": {
            "preference": {
              "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

                ValueReference<K, V> valueReference = e.getValueReference();
                if (valueReference.isLoading()
                    || (checkTime && (now - e.getWriteTime() < map.refreshNanos))) {
                  // refresh is a no-op if loading is pending
                  // if checkTime, we want to check *after* acquiring the lock if refresh still needs
                  // to be scheduled
                  return null;
                }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

                ValueReference<K, V> valueReference = e.getValueReference();
                if (valueReference.isLoading()
                    || (checkTime && (now - e.getWriteTime() < map.refreshNanos))) {
                  // refresh is a no-op if loading is pending
                  // if checkTime, we want to check *after* acquiring the lock if refresh still needs
                  // to be scheduled
                  return null;
                }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

        echo "Mounting /var/lib/kubelet/pki on tmpfs"
        mount -t tmpfs tmpfs /var/lib/kubelet/pki
    }
    
    # Override for GKE custom master setup scripts (no-op outside of GKE).
    function gke-master-start {
      if [[ -e "${KUBE_HOME}/bin/gke-internal-configure-helper.sh" ]]; then
        echo "Running GKE internal configuration script"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/net/http/server.go

    func isCommonNetReadError(err error) bool {
    	if err == io.EOF {
    		return true
    	}
    	if neterr, ok := err.(net.Error); ok && neterr.Timeout() {
    		return true
    	}
    	if oe, ok := err.(*net.OpError); ok && oe.Op == "read" {
    		return true
    	}
    	return false
    }
    
    // Serve a new connection.
    func (c *conn) serve(ctx context.Context) {
    	if ra := c.rwc.RemoteAddr(); ra != nil {
    		c.remoteAddr = ra.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    found 40 Degrees and 17 Minutes, and the least Angle AYS 54 Degrees and 7 Minutes. Suppose now that O [in _Fig._ 15.] is the Spectator's Eye, and OP a Line drawn parallel to the Sun's Rays and let POE, POF, POG, POH, be Angles of 40 Degr. 17 Min. 42 Degr. 2 Min. 50 Degr. 57 Min. and 54 Degr. 7 Min. respectively, and these Angles turned about their common Side OP, shall with their other Sides OE, OF; OG, OH, describe the Verges of two Rain-bows AF, BE and CHDG. For if E, F, G, H, be drops placed any where...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    	if !ok {
    		t.Fatalf("got %T, want *url.Error", err)
    	}
    	oe, ok := uerr.Err.(*net.OpError)
    	if !ok {
    		t.Fatalf("url.Error.Err =  %T; want *net.OpError", uerr.Err)
    	}
    	want := &net.OpError{
    		Op:  "proxyconnect",
    		Net: "tcp",
    		Err: errDial, // original error, unwrapped.
    	}
    	if !reflect.DeepEqual(oe, want) {
    		t.Errorf("Got error %#v; want %#v", oe, want)
    	}
    }
    
    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