Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Store2 (0.17 sec)

  1. src/cmd/go/alldocs.go

    // dependencies.
    //
    // The -fuzzcache flag causes clean to remove files stored in the Go build
    // cache for fuzz testing. The fuzzing engine caches files that expand
    // code coverage, so removing them may make fuzzing less effective until
    // new inputs are found that provide the same coverage. These files are
    // distinct from those stored in testdata directory; clean does not remove
    // those files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	fittingPod := pods[1]
    	kl.podWorkers.(*fakePodWorkers).running = map[types.UID]bool{
    		pods[0].UID: true,
    		pods[1].UID: true,
    	}
    
    	kl.HandlePodAdditions(pods)
    
    	// Check pod status stored in the status map.
    	checkPodStatus(t, kl, notfittingPod, v1.PodFailed)
    	checkPodStatus(t, kl, fittingPod, v1.PodPending)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// onRepeatedHeartbeatFailure is called when a heartbeat operation fails more than once. optional.
    	onRepeatedHeartbeatFailure func()
    
    	// podManager stores the desired set of admitted pods and mirror pods that the kubelet should be
    	// running. The actual set of running pods is stored on the podWorkers. The manager is populated
    	// by the kubelet config loops which abstracts receiving configuration from many different sources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    }
    
    func TestStoreCreateGenerateNameConflict(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.RetryGenerateName, false)
    
    	// podA will be stored with name foo12345
    	podA := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "test"},
    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      echo "Mounted master-pd '${pd_path}' at '${mount_point}'"
    
      # NOTE: These locations on the PD store persistent data, so to maintain
      # upgradeability, these locations should not change.  If they do, take care
      # to maintain a migration path from these locations to whatever new
      # locations.
    
      # Contains all the data stored in etcd.
      mkdir -p "${mount_point}/var/etcd"
      chmod 700 "${mount_point}/var/etcd"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    		os.Sweep()
    	}
    }
    
    // PutObjectExtractHandler - PUT Object extract is an extended API
    // based off from AWS Snowball feature to auto extract compressed
    // stream will be extracted in the same directory it is stored in
    // and the folder structures will be built out accordingly.
    func (api objectAPIHandlers) PutObjectExtractHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PutObjectExtract")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	}
    
    	pod, ok := kl.GetPodByName(namespace, name)
    	if !ok {
    		return fmt.Errorf("pod %q cannot be found - no logs available", name)
    	}
    
    	// TODO: this should be using the podWorker's pod store as authoritative, since
    	// the mirrorPod might still exist, the pod may have been force deleted but
    	// is still terminating (users should be able to view logs of force deleted static pods
    	// based on full name).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    		t.Fatalf("Unexpected error when syncing jobs %v", err)
    	}
    	actual, err := manager.jobLister.Jobs(job.Namespace).Get(job.Name)
    	if err != nil {
    		t.Fatalf("Unexpected error when trying to get job from the store: %v", err)
    	}
    	// Verify that after syncing a complete job, the conditions are the same.
    	if got, expected := len(actual.Status.Conditions), 1; got != expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	// See golang.org/issue/22220.
    	// We still call updateBuildID to update a.buildID, which is important
    	// for test result caching, but passing rewrite=false (final arg)
    	// means we don't actually rewrite the binary, nor store the
    	// result into the cache. That's probably a net win:
    	// less cache space wasted on large binaries we are not likely to
    	// need again. (On the other hand it does make repeated go test slower.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        std::vector<float> scales = {static_cast<float>(qtype.getScale())};
        std::vector<int64_t> zero_points = {qtype.getZeroPoint()};
        q_params = tflite::CreateQuantizationParameters(
            // min and max values are not stored in the quantized type from MLIR, so
            // both are set to 0 in the flatbuffer when they are exported.
            builder_, /*min=*/0, /*max=*/0, builder_.CreateVector<float>(scales),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top