Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 385 for updateIPs (1.34 sec)

  1. staging/src/k8s.io/apiserver/pkg/storageversion/updater.go

    		return err
    	}
    	_, err = c.UpdateStatus(context.TODO(), updatedSV, metav1.UpdateOptions{})
    	return err
    }
    
    // localUpdateStorageVersion updates the input storageversion with given server storageversion info.
    // The function updates the input storageversion in place.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_overlay.txt

    cp incomplete-sum-file $WORK/overlay/overlay-sum-used-correct-sums
    ! go get -overlay overlay.json .
    stderr '^go: updates to go.sum needed, but go.sum is part of the overlay specified with -overlay$'
    cmp incomplete-sum-file $WORK/overlay/overlay-sum-used-correct-sums
    ! go mod tidy -overlay overlay.json
    stderr '^go: updates to go.sum needed, but go.sum is part of the overlay specified with -overlay$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/config/types.go

    	// will be mirrored to an EndpointSlice for an EndpointSubset.
    	MirroringMaxEndpointsPerSubset int32
    
    	// mirroringEndpointUpdatesBatchPeriod can be used to batch EndpointSlice
    	// updates. All updates triggered by EndpointSlice changes will be delayed
    	// by up to 'mirroringEndpointUpdatesBatchPeriod'. If other addresses in the
    	// same Endpoints resource change in that period, they will be batched to a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:33 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. pkg/registry/registrytest/endpoint.go

    	if err != nil {
    		return nil, false, err
    	}
    	endpoints := obj.(*api.Endpoints)
    	// TODO: support namespaces in this mock
    	e.lock.Lock()
    	defer e.lock.Unlock()
    
    	e.Updates = append(e.Updates, *endpoints)
    
    	if e.Err != nil {
    		return nil, false, e.Err
    	}
    	if e.Endpoints == nil {
    		e.Endpoints = &api.EndpointsList{
    			Items: []api.Endpoints{
    				*endpoints,
    			},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4K bytes
    - Viewed (0)
  5. releasenotes/notes/31946.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 31946
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 07 18:37:59 UTC 2022
    - 174 bytes
    - Viewed (0)
  6. .github/dependabot.yml

    ---
    version: 2
    updates:
      - package-ecosystem: gomod
        directory: /
        schedule:
          interval: weekly
      - package-ecosystem: github-actions
        directory: /
        schedule:
          interval: weekly
      - package-ecosystem: gomod
        directory: /tests
        schedule:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Aug 09 05:16:25 UTC 2021
    - 287 bytes
    - Viewed (0)
  7. pilot/pkg/xds/discovery_test.go

    				expect(0, 0)
    			},
    		},
    		{
    			name: "Should send full updates in batches",
    			test: func(updateCh chan *model.PushRequest, expect func(partial, full int32)) {
    				updateCh <- &model.PushRequest{Full: true}
    				updateCh <- &model.PushRequest{Full: true}
    				expect(0, 1)
    			},
    		},
    		{
    			name: "Should send full updates in batches, partial updates immediately",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/MultiProcessSafeAsyncPersistentIndexedCache.java

     */
    package org.gradle.cache.internal;
    
    import org.gradle.cache.UnitOfWorkParticipant;
    
    import javax.annotation.Nullable;
    import java.util.function.Function;
    
    /**
     * An indexed cache that may perform updates asynchronously.
     */
    public interface MultiProcessSafeAsyncPersistentIndexedCache<K, V> extends UnitOfWorkParticipant {
        /**
         * Fetches the given entry, blocking until the result is available.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_arm64.s

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // castagnoliUpdate updates the non-inverted crc with the given data.
    
    // func castagnoliUpdate(crc uint32, p []byte) uint32
    TEXT ·castagnoliUpdate(SB),NOSPLIT,$0-36
    	MOVWU	crc+0(FP), R9  // CRC value
    	MOVD	p+8(FP), R13  // data pointer
    	MOVD	p_len+16(FP), R11  // len(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 08:57:33 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/results/results_manager_test.go

    		select {
    		case u := <-m.Updates():
    			if expected != u {
    				t.Errorf("Expected update %v, received %v: %s", expected, u, msg)
    			}
    		case <-time.After(wait.ForeverTestTimeout):
    			t.Errorf("Timed out waiting for update %v: %s", expected, msg)
    		}
    	}
    
    	expectNoUpdate := func(msg string) {
    		// NOTE: Since updates are accumulated asynchronously, this method is not guaranteed to fail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 02 10:55:41 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top