Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for makeID (0.36 sec)

  1. cmd/server_test.go

    	c.Assert(err, nil)
    
    	// execute the upload request.
    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	// assert the http response.
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	// make HTTP request to fetch the object.
    	request, err = newTestSignedRequest(http.MethodGet, getGetObjectURL(s.endPoint, bucketName, objectName),
    		0, nil, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    				t.Errorf("expected MaxDirectResponseBodySizeBytes %v, got %v",
    					istio_route.DefaultMaxDirectResponseBodySizeBytes, r.MaxDirectResponseBodySizeBytes)
    			}
    			vh := make(map[string][]string)
    			hr := make(map[string]int)
    			for _, h := range r.VirtualHosts {
    				vh[h.Name] = h.Domains
    				hr[h.Name] = len(h.Routes)
    				if h.Name != "blackhole:80" && !h.IncludeRequestAttemptCount {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // unless it is being referred to by that import path. In this way, import comments
    // let package authors make sure the custom import path is used and not a
    // direct path to the underlying code hosting site.
    //
    // Import path checking is disabled for code found within vendor trees.
    // This makes it possible to copy code into alternate locations in vendor trees
    // without needing to update import comments.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // control/data edges between them will only be reflected in host graph.
      // From XLA's perspective, two originally dependent clusters are no longer
      // connected, which makes them look like they can be scheduled for execution
      // in arbitrary order even though in fact they must be executed in order
      // according to their host-side graph dependency. This can cause deadlock.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    	if selector != nil {
    		opts.LabelSelector = selector.String()
    	}
    	nodeList, err := l.client.CoreV1().Nodes().List(context.Background(), opts)
    	if err != nil {
    		return nil, err
    	}
    	nodes := make([]*v1.Node, len(nodeList.Items))
    	return nodes, nil
    }
    
    func TestUpdateNewNodeStatus(t *testing.T) {
    	cases := []struct {
    		desc                string
    		nodeStatusMaxImages int32
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    			})
    		}
    	}
    }
    
    type vmCase struct {
    	name string
    	from echo.Instance
    	to   echo.Instances
    	host string
    }
    
    func DNSTestCases(t TrafficContext) {
    	makeSE := func(ips ...string) string {
    		return tmpl.MustEvaluate(`
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: dns
    spec:
      hosts:
      - "fake.service.local"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

         * be read without locking. Next fields of nodes are immutable (final). All list additions are
         * performed at the front of each bin. This makes it easy to check changes, and also fast to
         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    	*controller.FakePodControl
    	podStore     cache.Store
    	podIDMap     map[string]*v1.Pod
    	expectations controller.ControllerExpectationsInterface
    }
    
    func newFakePodControl() *fakePodControl {
    	podIDMap := make(map[string]*v1.Pod)
    	return &fakePodControl{
    		FakePodControl: &controller.FakePodControl{},
    		podIDMap:       podIDMap,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // If the op has a fusible bias, make sure the bias is a constant.
        if (auto add_op = FindUserOfType<stablehlo::AddOp>(op);
            add_op != nullptr &&
            !isa<stablehlo::ConstantOp>(add_op->getOperand(1).getDefiningOp())) {
          LLVM_DEBUG(llvm::dbgs() << "Expected a `stablehlo.constant` as the "
                                  << "rhs of `stablehlo.add`.\n");
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    func getCpObjMetadataFromHeader(ctx context.Context, r *http.Request, userMeta map[string]string) (map[string]string, error) {
    	// Make a copy of the supplied metadata to avoid
    	// to change the original one.
    	defaultMeta := make(map[string]string, len(userMeta))
    	for k, v := range userMeta {
    		// skip tier metadata when copying metadata from source object
    		switch k {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top