Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for rewrites (0.15 sec)

  1. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    		}
    	}
    
    	// Since we're never writing more than one uintptr's worth of bits, we're either going
    	// to do one or two writes.
    	dst := span.heapBits()
    	o := (x - span.base()) / goarch.PtrSize
    	i := o / ptrBits
    	j := o % ptrBits
    	if j+bits > ptrBits {
    		// Two writes.
    		bits0 := ptrBits - j
    		bits1 := bits - bits0
    		dst[i+0] = dst[i+0]&(^uintptr(0)>>bits0) | (src << j)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        string device_;
    
        // NodeDef for the function call node.
        NodeDef call_node_def_;
    
        // Name that is used for the call node. This may not be
        // call_node_def_.name() if the client supplies a rewrite lambda.
        string function_def_name_;
    
        // Placeholder node simulating the host compute key in the output graph.
        // Not owned.
        Node* host_compute_key_placeholder_ = nullptr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

    # and that it connects to the API Server.
    function Verify-WorkerServices {
      $timeout = 12
      $retries = 0
      $retryDelayInSeconds = 5
    
      Log-Output ("Testing node connection to API server...")
      do {
          $retries++
          $nodes_list = & "${env:NODE_DIR}\kubectl.exe" get nodes -o=custom-columns=:.metadata.name -A | Out-String
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    		p = alignUp(p, align)
    		p2 := sysReserve(unsafe.Pointer(p), size)
    		if p != uintptr(p2) {
    			// Must have raced. Try again.
    			sysFreeOS(p2, size)
    			if retries++; retries == 100 {
    				throw("failed to allocate aligned heap memory; too many retries")
    			}
    			goto retry
    		}
    		// Success.
    		return p2, size
    	default:
    		// Trim off the unaligned parts.
    		pAligned := alignUp(p, align)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *
         * The call timeout spans the entire call: resolving DNS, connecting, writing the request body,
         * server processing, and reading the response body. If the call requires redirects or retries
         * all must complete within one timeout period.
         *
         * The default value is 0 which imposes no timeout.
         */
        fun callTimeout(
          timeout: Long,
          unit: TimeUnit,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. pilot/pkg/model/virtualservice_test.go

    				{
    					Match: []*networking.HTTPMatchRequest{
    						{
    							Uri: &networking.StringMatch{
    								MatchType: &networking.StringMatch_Prefix{Prefix: "/legacy/path"},
    							},
    						},
    					},
    					Rewrite: &networking.HTTPRewrite{
    						Uri: "/productpage",
    					},
    					Delegate: &networking.Delegate{
    						Name:      "productpage-vs",
    						Namespace: "default",
    					},
    				},
    			},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	return r.write(w, false, nil, nil)
    }
    
    // WriteProxy is like [Request.Write] but writes the request in the form
    // expected by an HTTP proxy. In particular, [Request.WriteProxy] writes the
    // initial Request-URI line of the request with an absolute URI, per
    // section 5.3 of RFC 7230, including the scheme and host.
    // In either case, WriteProxy also writes a Host header, using
    // either r.Host or r.URL.Host.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais2.go

    		j := int(sa[i])
    		if j >= 0 {
    			// Skip non-flagged entry.
    			// (This loop can't see an empty entry; 0 means the real zero index.)
    			continue
    		}
    
    		// Negative j is a work queue entry; rewrite to positive j for final suffix array.
    		j = -j
    		sa[i] = int64(j)
    
    		// Index j was on work queue (encoded as -j but now decoded),
    		// meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		if controllerErr != nil {
    			t.Errorf("Expected no error from the controller, but got: %#v", controllerErr)
    		}
    	})
    
    	t.Run("priority level concurrency is set to 1, inner handler writes to the response before request times out", func(t *testing.T) {
    		t.Parallel()
    		const (
    			userName                                              = "alice"
    			fsName                                                = "test-fs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top