Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 138 for updatePod (0.29 sec)

  1. src/runtime/map.go

    			// Check the current hash table for the data.
    			// This code handles the case where the key
    			// has been deleted, updated, or deleted and reinserted.
    			// NOTE: we need to regrab the key as it has potentially been
    			// updated to an equal() but not identical key (e.g. +0.0 vs -0.0).
    			rk, re := mapaccessK(t, h, k)
    			if rk == nil {
    				continue // key has been deleted
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. .bazelrc

    build:rbe_linux_cpu --copt=-Wno-error=unused-command-line-argument
    # This was added in clang-16 by https://reviews.llvm.org/D133574.
    # Can be removed once upb is updated, since a type definition is used within
    # offset of in the current version of ubp.
    # See https://github.com/protocolbuffers/upb/blob/9effcbcb27f0a665f9f345030188c0b291e32482/upb/upb.c#L183.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

      TF_Graph* const cond_graph;
      const TF_Output* const cond_inputs;
      TF_Output cond_output;
    
      // The loop body graph. The inputs are the current values of the loop
      // variables. The outputs are the updated values of the loop variables.
      TF_Graph* const body_graph;
      const TF_Output* const body_inputs;
      TF_Output* const body_outputs;
    
      // Unique null-terminated name for this while loop. This is used as a prefix
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	}
    
    	mainModule := MainModules.mustGetSingleMainModule()
    
    	if rs.hasRedundantRoot() {
    		// If any module path appears more than once in the roots, we know that the
    		// go.mod file needs to be updated even though we have not yet loaded any
    		// transitive dependencies.
    		var err error
    		rs, err = updateRoots(ctx, rs.direct, rs, nil, nil, false)
    		if err != nil {
    			return nil, err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal.go

    	a.queue.AddRateLimited(key)
    
    	// Register HPA in the hpaSelectors map if it's not present yet. Attaching the Nothing selector
    	// that does not select objects. The actual selector is going to be updated
    	// when it's available during the autoscaler reconciliation.
    	a.hpaSelectorsMux.Lock()
    	defer a.hpaSelectorsMux.Unlock()
    	if hpaKey := selectors.Parse(key); !a.hpaSelectors.SelectorExists(hpaKey) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	if len(nodesToUpdateStatusFor) != 0 {
    		t.Fatalf("nodesToUpdateStatusFor should be empty as nodeName does not exist")
    	}
    }
    
    // Test_updateNodeStatusUpdateNeeded expects statusUpdateNeeded to be properly updated if
    // updateNodeStatusUpdateNeeded is called on a node that exists in the actual state of the world
    func Test_updateNodeStatusUpdateNeeded(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                        .actionGet(ComponentUtil.getFessConfig().getIndexIndexTimeout()).getResult();
                return result == Result.CREATED || result == Result.UPDATED;
            } catch (final OpenSearchException e) {
                throw new SearchEngineClientException("[" + index + "] Failed to set " + value + " to " + field + " for doc " + id, e);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	for _, vol := range attachedVolumes {
    		if vol.VolumeName == volumeName1 {
    			// devicePath + attachability must have been updated from node.status
    			assert.True(t, vol.PluginIsAttachable)
    			assert.Equal(t, vol.DevicePath, "fake/path")
    		}
    		if vol.VolumeName == volumeName2 {
    			// only attachability was updated from node.status
    			assert.False(t, vol.PluginIsAttachable)
    			assert.Equal(t, vol.DevicePath, "/dev/reconstructed")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    	case *ast.ParenExpr:
    		check.updateExprType0(x, x.X, typ, final)
    
    	case *ast.UnaryExpr:
    		// If x is a constant, the operands were constants.
    		// The operands don't need to be updated since they
    		// never get "materialized" into a typed value. If
    		// left in the untyped map, they will be processed
    		// at the end of the type check.
    		if old.val != nil {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string image = 4;
    
      // Specifies the image pull policy. one of Always, Never, IfNotPresent.
      // Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated.
      //
      // More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
      string pullPolicy = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top