Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	// Here we manually create them for mocking purpose.
    	svc1Ips := []string{"128.0.0.1"}
    	portNames := []string{"tcp-port"}
    	// Create 1 endpoint that refers to a pod in the same namespace.
    	createEndpoints(t, controller, "svc1", "nsA", portNames, svc1Ips, nil, nil)
    
    	// Creates 100 endpoints that refers to a pod in a different namespace.
    	fakeSvcCounts := 100
    	for i := 0; i < fakeSvcCounts; i++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				st.MakePod().Name("p4.4").UID("p4.4").Node("node4").Priority(negPriority).Req(smallRes).StartTime(epochTime).Obj(),
    			},
    			expected: []string{"node1"},
    		},
    		{
    			name:           "same priority, same number of victims, different start time for each node's pod",
    			registerPlugin: tf.RegisterPluginAsExtensions(noderesources.Name, nodeResourcesFitFunc, "Filter", "PreFilter"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    //           `inputs` cannot contain the same tensor twice.
    //  noutputs - number of elements in `outputs` array
    //  outputs - array of TF_Outputs that specify the outputs of the function.
    //            If `noutputs` is zero (the function returns no outputs), `outputs`
    //            can be null. `outputs` can contain the same tensor more than once.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top