Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,035 for updateIPs (0.8 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/controller/nodeipam/ipam/sync/sync.go

    type kubeAPI interface {
    	// Node returns the spec for the Node object.
    	Node(ctx context.Context, name string) (*v1.Node, error)
    	// UpdateNodePodCIDR updates the PodCIDR in the Node spec.
    	UpdateNodePodCIDR(ctx context.Context, node *v1.Node, cidrRange *net.IPNet) error
    	// UpdateNodeNetworkUnavailable updates the network unavailable status for the node.
    	UpdateNodeNetworkUnavailable(nodeName string, unavailable bool) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. 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)
  6. pkg/controller/cronjob/injection.go

    		Resource: "cronjobs",
    	}, name)
    }
    
    var _ cjControlInterface = &fakeCJControl{}
    
    func (c *fakeCJControl) UpdateStatus(ctx context.Context, cj *batchv1.CronJob) (*batchv1.CronJob, error) {
    	c.Updates = append(c.Updates, *cj)
    	return cj, nil
    }
    
    // ------------------------------------------------------------------ //
    
    // jobControlInterface is an interface that knows how to add or delete jobs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 09:37:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. releasenotes/notes/39505.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 39505
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 29 16:19:08 UTC 2022
    - 231 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    var (
    	kubeletFinalizePhaseExample = cmdutil.Examples(`
    		# Updates settings relevant to the kubelet after TLS bootstrap"
    		kubeadm init phase kubelet-finalize all --config
    		`)
    	// TODO: remove with 'experimental-cert-rotation'.
    	// https://github.com/kubernetes/kubeadm/issues/3046
    	enableClientCertRotationRun = false
    )
    
    // NewKubeletFinalizePhase creates a kubeadm workflow phase that updates settings
    // relevant to the kubelet after TLS bootstrap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

            operations.size() == 3
            assertConfigureOp(operations[0])
            assertBeforeEvaluateOp(operations[1])
            assertAfterEvaluateOp(operations[2])
        }
    
        void "notifies listeners and updates state on evaluation failure"() {
            when:
            1 * delegate.evaluate(project, state) >> { throw failure1 }
            1 * listener.afterEvaluate(project, state)
    
            then:
            failsWithCause(failure1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_lazy_consistency.txt

    # Those requirements indicate x.2, not x.1, so the module graph is
    # inconsistent and needs to be fixed.
    
    ! go list -deps ./useneedx2
    stderr '^go: updates to go.mod needed; to update it:\n\tgo mod tidy$'
    
    ! go list -deps example.net/needx2
    stderr '^go: updates to go.mod needed; to update it:\n\tgo mod tidy$'
    
    
    # The command printed in the error message should fix the problem.
    
    go mod tidy
    go list -deps ./useneedx2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 05 17:56:24 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top