Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 335 for SAME (0.04 sec)

  1. pkg/workloadapi/workload.pb.go

    	// Prefer traffic in the same region.
    	LoadBalancing_REGION LoadBalancing_Scope = 1
    	// Prefer traffic in the same zone.
    	LoadBalancing_ZONE LoadBalancing_Scope = 2
    	// Prefer traffic in the same subzone.
    	LoadBalancing_SUBZONE LoadBalancing_Scope = 3
    	// Prefer traffic on the same node.
    	LoadBalancing_NODE LoadBalancing_Scope = 4
    	// Prefer traffic in the same cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. cmd/iam.go

    // has the same name as the value of this field.
    //
    // - from special JWT claim from STS request for AssumeRoleWithOIDC API (when
    // not using RoleARN). The claim value can be a string or a list and refers to
    // the names of access policies.
    //
    // For all except the RoleARN case, the implementation is the same - the policy
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    		"old and new no mode": {
    			oldClass:      noBinding,
    			newClass:      noBinding,
    			shouldSucceed: true,
    		},
    		"old and new same mode ptr": {
    			oldClass:      immediateBinding1,
    			newClass:      immediateBinding1,
    			shouldSucceed: true,
    		},
    		"old and new same mode value": {
    			oldClass:      immediateBinding1,
    			newClass:      immediateBinding2,
    			shouldSucceed: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    	// this list must have at least one matching (by name) volumeMount in one
    	// container in the template. A claim in this list takes precedence over
    	// any volumes in the template, with the same name.
    	// TODO: Define the behavior if a claim already exists with the same name.
    	// +optional
    	// +listType=atomic
    	VolumeClaimTemplates []v1.PersistentVolumeClaim `json:"volumeClaimTemplates,omitempty" protobuf:"bytes,4,rep,name=volumeClaimTemplates"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers.go

    // Thresholds are parsed from evictionHard and evictionSoft limits so we will override.
    // If there is a single filesystem, then containerfs settings are same as nodefs.
    // If there is a separate image filesystem for both containers and images then containerfs settings are same as imagefs.
    func UpdateContainerFsThresholds(thresholds []evictionapi.Threshold, imageFs, separateContainerImageFs bool) ([]evictionapi.Threshold, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    	}
    	testPod.Status = podStatus
    
    	t.Logf("If the pod status is the same, a reconciliation is not needed and syncBatch should do nothing")
    	syncer.podManager.(mutablePodManager).UpdatePod(testPod)
    	if syncer.needsReconcile(testPod.UID, podStatus) {
    		t.Fatalf("Pod status is the same, a reconciliation is not needed")
    	}
    	syncer.SetPodStatus(testPod, podStatus)
    	syncer.syncBatch(true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    	{"%-10X", []byte{0xab}, "AB        "},
    	{"% -010X", []byte{0xab}, "AB        "},
    	{"%#-10X", []byte{0xab, 0xcd}, "0XABCD    "},
    	{"%# -010X", []byte{0xab, 0xcd}, "0XAB 0XCD "},
    	// Same for strings
    	{"%2x", "", "  "},
    	{"%#2x", "", "  "},
    	{"% 02x", "", "00"},
    	{"%# 02x", "", "00"},
    	{"%-2x", "", "  "},
    	{"%-02x", "", "  "},
    	{"%8x", "\xab", "      ab"},
    	{"% 8x", "\xab", "      ab"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    			ident.Obj = obj
    		}
    	}
    }
    
    func (p *parser) shortVarDecl(idents []*ast.Ident) {
    	// Go spec: A short variable declaration may redeclare variables
    	// provided they were originally declared in the same block with
    	// the same type, and at least one of the non-blank variables is new.
    	n := 0 // number of new variables
    	for _, ident := range idents {
    		assert(ident.Obj == nil, "identifier already declared or resolved")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    	fmt.Fprintf(&b, "\t1\n")
    	fmt.Fprintf(&b, "};\n")
    
    	// do the same work for floats.
    	fmt.Fprintf(&b, "double __cgodebug_floats[] = {\n")
    	for _, n := range names {
    		if n.Kind == "fconst" {
    			fmt.Fprintf(&b, "\t%s,\n", n.C)
    		} else {
    			fmt.Fprintf(&b, "\t0,\n")
    		}
    	}
    	fmt.Fprintf(&b, "\t1\n")
    	fmt.Fprintf(&b, "};\n")
    
    	// do the same work for strings.
    	for i, n := range names {
    		if n.Kind == "sconst" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        op.getIsInitialized().replaceAllUsesWith(const_true);
        op.erase();
      }
    }
    
    // Performs store-load forwarding. This effectively removes
    // 1) Any resource loads after a store to that same resource is done
    // 2) Any resource stores except the last one.
    // TODO(ycao): Store-load forwarding implemented here is only correct when
    // computation is purely sequential (no concurrency). Need to support concurrent
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top