Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 967 for updateIPs (0.15 sec)

  1. src/internal/runtime/atomic/types.go

    type Int32 struct {
    	noCopy noCopy
    	value  int32
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (i *Int32) Load() int32 {
    	return Loadint32(&i.value)
    }
    
    // Store updates the value atomically.
    //
    //go:nosplit
    func (i *Int32) Store(value int32) {
    	Storeint32(&i.value, value)
    }
    
    // CompareAndSwap atomically compares i's value with old,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/fieldmanager.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/klog/v2"
    	"sigs.k8s.io/structured-merge-diff/v4/merge"
    )
    
    // DefaultMaxUpdateManagers defines the default maximum retained number of managedFields entries from updates
    // if the number of update managers exceeds this, the oldest entries will be merged until the number is below the maximum.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. pkg/registry/registrytest/service.go

    	r.mu.Lock()
    	defer r.mu.Unlock()
    
    	r.UpdatedID = svc.Name
    	*r.Service = *svc
    	r.Updates = append(r.Updates, *svc)
    	return svc, r.Err
    }
    
    func (r *ServiceRegistry) WatchServices(ctx context.Context, options *metainternalversion.ListOptions) (watch.Interface, error) {
    	r.mu.Lock()
    	defer r.mu.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 13:43:36 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorUtils.java

            String checksums = toRepositoryChecksumPolicy(RepositoryPolicy.CHECKSUM_POLICY_WARN); // the default
            String updates = RepositoryPolicy.UPDATE_POLICY_DAILY;
    
            if (policy != null) {
                enabled = policy.isEnabled();
                if (policy.getUpdatePolicy() != null) {
                    updates = policy.getUpdatePolicy();
                }
                if (policy.getChecksumPolicy() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:35 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/endpointslicemirroringcontroller.go

    	fs.DurationVar(&o.MirroringEndpointUpdatesBatchPeriod.Duration, "mirroring-endpointslice-updates-batch-period", o.MirroringEndpointUpdatesBatchPeriod.Duration, fmt.Sprintf("The length of EndpointSlice updates batching period for %s. Processing of EndpointSlice changes will be delayed by this duration to join them with potential upcoming updates and reduce the overall number of EndpointSlice updates. Larger number = higher endpoint programming latency, but lower number of endpoints revision generated",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. pkg/kubelet/pod/pod_manager_test.go

    				Name:        "taco",
    				Namespace:   "default",
    				Annotations: map[string]string{kubetypes.ConfigSourceAnnotationKey: "api"},
    			},
    		},
    		staticPod,
    	}
    	updates := append(expectedPods, mirrorPod)
    	podManager, _ := newTestManager()
    	podManager.SetPods(updates)
    
    	// Tests that all regular pods are recorded correctly.
    	actualPods := podManager.GetPods()
    	if len(actualPods) != len(expectedPods) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_diff.txt

    ! stdout 'diff current/go.mod tidy/go.mod'
    ! stdout 'diff current/go.sum tidy/go.sum'
    
    # go.mod requires updates, should return non-zero exit code.
    cp go.mod.orig go.mod
    ! go mod tidy -diff
    stdout 'diff current/go.mod tidy/go.mod'
    ! stdout 'diff current/go.sum tidy/go.sum'
    cmp go.mod.orig go.mod
    
    # go.sum requires updates, should return non-zero exit code.
    go mod tidy
    cp go.sum.orig go.sum
    ! go mod tidy -diff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/events_test.go

    				ReportingInstance:   "node-xyz",
    				Action:              "Do",
    				Reason:              "Yeees",
    				Type:                "Normal",
    			},
    			valid: false,
    			msg:   "forbidden updates to involvedObject",
    		},
    		{
    			newEvent: &core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test",
    					Namespace:       metav1.NamespaceSystem,
    					ResourceVersion: "1",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  9. pkg/adsc/adsc.go

    		}
    	}
    }
    
    // Wait for an updates for all the specified types
    // If updates is empty, this will wait for any update
    func (a *ADSC) Wait(to time.Duration, updates ...string) ([]string, error) {
    	t := time.NewTimer(to)
    	want := sets.New[string](updates...)
    	got := make([]string, 0, len(updates))
    	for {
    		select {
    		case toDelete := <-a.Updates:
    			if toDelete == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionDescriptorInternal.java

    import org.gradle.api.Describable;
    import org.gradle.api.artifacts.result.ComponentSelectionDescriptor;
    
    public interface ComponentSelectionDescriptorInternal extends ComponentSelectionDescriptor {
        /**
         * Updates the description of this component selection descriptor.
         *
         * @param description a new textual description of the descriptor.
         *
         * @return this descriptor
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top