Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for nameslice (0.48 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// add a few objects
    	v := storage.APIObjectVersioner{}
    	lastRV := uint64(0)
    	for i := 0; i < 5; i++ {
    		pod := &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: fmt.Sprintf("foo-%d", i), Namespace: "test-ns"}}
    		out := &example.Pod{}
    		key := computePodKey(pod)
    		if err := etcdStorage.Create(context.Background(), key, pod, out, 0); err != nil {
    			t.Fatalf("Create failed: %v", err)
    		}
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

    #include "tensorflow/lite/tools/optimize/test_util.h"
    
    // Note: branched from tensorflow/lite/tools/optimize/quantize_model_test.cc
    
    namespace {
    tensorflow::string* g_test_model_dir = nullptr;
    }  // namespace
    
    namespace tflite {
    namespace optimize {
    namespace {
    
    using testing::Eq;
    using testing::FloatEq;
    using testing::FloatNear;
    using testing::IsEmpty;
    using testing::NotNull;
    using testing::SizeIs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging_test.go

    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			nil, // No Telemetry API configured, fall back to legacy mesh config setting
    		},
    		{
    			"prometheus-namespace",
    			[]config.Config{newTelemetry("default", prometheus)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			nil, // No Telemetry API configured, fall back to legacy mesh config setting
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    //===----------------------------------------------------------------------===//
    // The actual LowerStaticTensorList Pass.
    //
    namespace mlir {
    
    #define GEN_PASS_DECL_LOWERSTATICTENSORLISTPASS
    #define GEN_PASS_DEF_LOWERSTATICTENSORLISTPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    namespace {
    
    /// Lower TensorList ops in functions for subsequent legalization.
    struct LowerStaticTensorListPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    func (p *PriorityQueue) getUnschedulablePodsWithMatchingAffinityTerm(logger klog.Logger, pod *v1.Pod) []*framework.QueuedPodInfo {
    	nsLabels := interpodaffinity.GetNamespaceLabelsSnapshot(logger, pod.Namespace, p.nsLister)
    
    	var podsToMove []*framework.QueuedPodInfo
    	for _, pInfo := range p.unschedulablePods.podInfoMap {
    		for _, term := range pInfo.RequiredAffinityTerms {
    			if term.Matches(pod, nsLabels) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    		HTTPStatusCode: http.StatusConflict,
    	},
    	ErrBucketAlreadyExists: {
    		Code:           "BucketAlreadyExists",
    		Description:    "The requested bucket name is not available. The bucket namespace is shared by all users of the system. Please select a different name and try again.",
    		HTTPStatusCode: http.StatusConflict,
    	},
    	ErrAllAccessDisabled: {
    		Code:           "AllAccessDisabled",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    				setIndex:  er.setIndex,
    				poolIndex: er.poolIndex,
    			})
    		}
    	}
    
    	fi.ReplicationState = opts.PutReplicationState()
    
    	// we are adding a new version to this object under the namespace lock, so this is the latest version.
    	fi.IsLatest = true
    
    	return fi.ToObjectInfo(bucket, object, opts.Versioned || opts.VersionSuspended), nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top