Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 138 for updatePod (0.47 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // function.
    llvm::SmallSet<int, 4> GetResizedTensorListIndexes(
        func::FuncOp func, const llvm::SmallSet<int, 4> &tensor_list_args) {
      // `indexes` stores the argument index of tensorlists which size may get
      // updated in the function.
      llvm::SmallSet<int, 4> indexes;
      for (BlockArgument &arg : func.getArguments()) {
        if (tensor_list_args.contains(arg.getArgNumber())) {
          for (const mlir::OpOperand &use : arg.getUses()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		t.Errorf("Expected OpeiontalOldSelf field to be dropped for create when feature gate is disabled")
    	}
    
    	var updated *apiextensionsv1.CustomResourceDefinition
    	err = wait.PollUntilContextTimeout(context.TODO(), 100*time.Millisecond, 5*time.Second, true, func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    		nodes                []*v1.Node
    		expectedAntiAffinity topologyToMatchedTermCount
    		expectedAffinity     topologyToMatchedTermCount
    	}{
    		{
    			name: "preFilterState anti-affinity terms are updated correctly after adding and removing a pod",
    			pendingPod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "pending", Labels: selector1},
    				Spec: v1.PodSpec{
    					Affinity: &v1.Affinity{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    	hnsNetworkInfo, err := getNetworkInfo(hns, hnsNetworkName)
    	if err != nil {
    		return nil, err
    	}
    
    	// Network could have been detected before Remote Subnet Routes are applied or ManagementIP is updated
    	// Sleep and update the network to include new information
    	if isOverlay(hnsNetworkInfo) {
    		time.Sleep(10 * time.Second)
    		hnsNetworkInfo, err = hns.getNetworkByName(hnsNetworkName)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    		// callbacks below the stack must be grown, all these uintptr references
    		// to the stack will not be updated, and traceback will continue
    		// to inspect the old stack memory, which may no longer be valid.
    		// Even if all the variables were updated correctly, it is not clear that
    		// we want to expose a traceback that begins on one stack and ends
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    		})
    	}
    
    	// Load sums for updated modules that had sums before. When we update a
    	// module, we may update another module in the build list that provides a
    	// package in 'all' that wasn't loaded as part of this 'go get' command.
    	// If we don't add a sum for that module, builds may fail later.
    	// Note that an incidentally updated package could still import packages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    var loaded *loader
    
    // PackageOpts control the behavior of the LoadPackages function.
    type PackageOpts struct {
    	// TidyGoVersion is the Go version to which the go.mod file should be updated
    	// after packages have been loaded.
    	//
    	// An empty TidyGoVersion means to use the Go version already specified in the
    	// main module's go.mod file, or the latest Go version if there is no main
    	// module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/binder_test.go

    			errors:          noerrors,
    			test:            testSyncVolume,
    		},
    
    		{
    			// syncVolume with volume bound to claim which exists in etcd but not updated to local cache.
    			name:            "4-12 - volume bound to newest claim but not updated to local cache",
    			initialVolumes:  newVolumeArray("volume4-12", "10Gi", "uid4-12-new", "claim4-12", v1.VolumeAvailable, v1.PersistentVolumeReclaimDelete, classEmpty),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p>Note: the multimap assumes complete ownership over of {@code map} and the collections
       * returned by {@code factory}. Those objects should not be manually updated and they should not
       * use soft, weak, or phantom references.
       *
       * @param map place to store the mapping from each key to its corresponding values
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top