Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for casePC (0.48 sec)

  1. pkg/kubelet/kubelet_pods.go

    		podIP = podIPs[0]
    	}
    
    	switch internalFieldPath {
    	case "spec.nodeName":
    		return pod.Spec.NodeName, nil
    	case "spec.serviceAccountName":
    		return pod.Spec.ServiceAccountName, nil
    	case "status.hostIP":
    		hostIPs, err := kl.getHostIPsAnyWay()
    		if err != nil {
    			return "", err
    		}
    		return hostIPs[0].String(), nil
    	case "status.hostIPs":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Infers the shape IfRegion outputs based on the shapes of the then and else
      // yields.
      bool InferShapeForIfRegion(IfRegionOp op);
    
      // Infers the shape CaseOp outputs based on the shapes of branch function
      // result types.
      bool InferShapeForCase(CaseOp op);
    
      // Infers the shape CaseRegion outputs based on the shapes of the branch
      // yields.
      bool InferShapeForCaseRegion(CaseRegionOp op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen.go

    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "id":
    			z.DiskID, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "DiskID")
    				return
    			}
    		case "v":
    			z.Volume, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Volume")
    				return
    			}
    		case "fp":
    			z.FilePath, err = dc.ReadString()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    				switch test.fault {
    				case MissingContentLength:
    					req.ContentLength = -1
    					// Setting the content length to a value greater than the max allowed size of a part.
    					// Used in test case  4.
    				case TooBigObject:
    					req.ContentLength = globalMaxObjectSize + 1
    					// Malformed signature.
    					// Used in test case  6.
    				case BadSignature:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    		}
    		s.Vaddr = va
    		va += uint64(vlen)
    		Segdata.Length = va - Segdata.Vaddr
    		switch s.Name {
    		case ".data":
    			data = s
    		case ".noptrdata":
    			noptr = s
    		case ".bss":
    			bss = s
    		case ".noptrbss":
    			noptrbss = s
    		case ".go.fuzzcntrs":
    			fuzzCounters = s
    		}
    	}
    
    	// Assign Segdata's Filelen omitting the BSS. We do this here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    			},
    		},
    	}
    
    	cases := []struct {
    		name         string
    		expectedName string
    		expectedPath string
    	}{
    		{
    			name:         "uds",
    			expectedName: security.SDSExternalClusterName,
    			expectedPath: security.CredentialNameSocketPath,
    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	return
    }
    
    func validateAllowOrigins(origin *networking.StringMatch) error {
    	var match string
    	switch origin.MatchType.(type) {
    	case *networking.StringMatch_Exact:
    		match = origin.GetExact()
    	case *networking.StringMatch_Prefix:
    		match = origin.GetPrefix()
    	case *networking.StringMatch_Regex:
    		match = origin.GetRegex()
    	}
    	if match == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	switch cfg.Goarch {
    	case "386":
    		return []string{"-m32"}
    	case "amd64":
    		if cfg.Goos == "darwin" {
    			return []string{"-arch", "x86_64", "-m64"}
    		}
    		return []string{"-m64"}
    	case "arm64":
    		if cfg.Goos == "darwin" {
    			return []string{"-arch", "arm64"}
    		}
    	case "arm":
    		return []string{"-marm"} // not thumb
    	case "s390x":
    		return []string{"-m64", "-march=z196"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    const fastJobApiBackoff = 10 * time.Millisecond
    const fastRequeue = 10 * time.Millisecond
    
    // testFinishedAt represents time one second later than unix epoch
    // this will be used in various test cases where we don't want back-off to kick in
    var testFinishedAt = metav1.NewTime((time.Time{}).Add(time.Second))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			return
    		}
    		waitListCh <- l
    	}(rev + 1)
    
    	select {
    	case <-time.After(500 * time.Millisecond):
    	case l := <-waitListCh:
    		t.Fatalf("expected waiting, but get %#v", l)
    	}
    
    	if _, err := registry.Create(ctx, barPod, rest.ValidateAllObjectFunc, &metav1.CreateOptions{}); err != nil {
    		t.Fatal(err)
    	}
    
    	select {
    	case <-time.After(wait.ForeverTestTimeout):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top