Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 96 for updateIPs (0.34 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    		}
    	}
    
    	state.currentState.reset(abt.T{})
    	// The normal logic of "reset" is included in the intersection loop below.
    
    	slotLocs := state.currentState.slots
    
    	// If this is the first call, do updates on the "baseState"; if this
    	// is a subsequent call, tweak the startState instead. Note that
    	// these "set" values are values; there are no side effects to
    	// other values as these are modified.
    	newState := baseState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for
    // more information.
    // Deployment enables declarative updates for Pods and ReplicaSets.
    type Deployment struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    //
    // This must be called each time pages are allocated from the heap, even if the page
    // allocator can otherwise prove the memory it's allocating is already zero because
    // they're fresh from the operating system. It updates heapArena metadata that is
    // critical for future page allocations.
    //
    // There are no locking constraints on this method.
    func (h *mheap) allocNeedsZero(base, npage uintptr) (needZero bool) {
    	for npage > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    		if modAddedBy[mod] == nil {
    			modAddedBy[mod] = pkg
    		}
    	}
    
    	return modAddedBy, nil
    }
    
    // pkg locates the *loadPkg for path, creating and queuing it for loading if
    // needed, and updates its state to reflect the given flags.
    //
    // The imports of the returned *loadPkg will be loaded asynchronously in the
    // ld.work queue, and its test (if requested) will also be populated once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	stateFullDisruption    = ZoneState("FullDisruption")
    	statePartialDisruption = ZoneState("PartialDisruption")
    )
    
    const (
    	// The amount of time the nodecontroller should sleep between retrying node health updates
    	retrySleepTime   = 20 * time.Millisecond
    	nodeNameKeyIndex = "spec.nodeName"
    	// podUpdateWorkerSizes assumes that in most cases pod will be handled by monitorNodeHealth pass.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    // pattern. For version queries such as "upgrade" and "patch" that depend on the
    // selected version of a module (or of the module containing a package),
    // whether a pattern denotes a package or module may change as updates are
    // applied (see the example in mod_get_patchmod.txt).
    //
    // There are a few other ambiguous cases to resolve, too. A package can exist in
    // two different modules at the same version: for example, the package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	return initServiceDiscoveryWithOpts(t, false)
    }
    
    // initServiceDiscoveryWithoutEvents initializes a test setup with no events. This avoids excessive attempts to push
    // EDS updates to a full queue
    func initServiceDiscoveryWithoutEvents(t test.Failer) (model.ConfigStore, *Controller) {
    	store := memory.Make(collections.Pilot)
    	configController := memory.NewController(store)
    
    	stop := test.NewStop(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			return fmt.Errorf("PodSchedulingContext object with UID %s is not owned by Pod %s/%s", schedulingCtx.UID, pod.Namespace, pod.Name)
    		}
    	}
    	p.schedulingCtx = schedulingCtx
    	return nil
    }
    
    // publish creates or updates the PodSchedulingContext object, if necessary.
    // Must not be called concurrently.
    func (p *podSchedulingState) publish(ctx context.Context, pod *v1.Pod, clientset kubernetes.Interface) error {
    	if !p.isDirty() {
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// `path_exists`.
      bool (*paths_exist)(const TF_Filesystem* filesystem, char** paths,
                          int num_files, TF_Status** statuses);
    
      /// Obtains statistics for the given `path`.
      ///
      /// Updates `stats` only if `status` is set to `TF_OK`.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if `path` exists.
      ///   * Must set `status` to `TF_NOT_FOUND` if `path` doesn't point to a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		kmsv1Enabled bool
    		expectedErr  string
    	}{
    		{
    			name:         "config with kmsv1, KMSv1=false",
    			kmsv1Enabled: false,
    			expectedErr:  "KMSv1 is deprecated and will only receive security updates going forward. Use KMSv2 instead.  Set --feature-gates=KMSv1=true to use the deprecated KMSv1 feature.",
    		},
    		{
    			name:         "config with kmsv1, KMSv1=true",
    			kmsv1Enabled: true,
    			expectedErr:  "",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top