Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,571 for updatePod (0.18 sec)

  1. pilot/pkg/xds/pushqueue_test.go

    				if request == nil {
    					return
    				}
    				updated := make([]string, 0, len(request.ConfigsUpdated))
    				for configkey := range request.ConfigsUpdated {
    					updated = append(updated, fmt.Sprintf("%d", configkey.Kind))
    				}
    				sort.Slice(updated, func(i, j int) bool {
    					l, _ := strconv.Atoi(updated[i])
    					r, _ := strconv.Atoi(updated[j])
    					return l < r
    				})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/providers/implicitTaskInputFileDependency/kotlin/build.gradle.kts

        // Don't need to update the consumer.inputFile property. This is automatically updated as producer.outputFile changes
        outputFile = layout.buildDirectory.file("file.txt")
    }
    
    // Change the build directory.
    // Don't need to update producer.outputFile and consumer.inputFile. These are automatically updated as the build directory changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNode.java

        }
    
        /**
         * Returns an updated node with the same children. The list of children are
         * incomplete, even if they were complete before.
         */
        protected abstract FileSystemNode withIncompleteChildren();
    
        /**
         * Returns an updated node with an updated list of children.
         *
         * Caller must ensure the child list is not be mutated as the method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/strategy_test.go

    	updatedPod := createdPod.DeepCopy()
    	updatedPod.Labels = map[string]string{"foo": "bar"}
    	updatedPod.ResourceVersion = "2"
    
    	errs = Strategy.ValidateUpdate(ctx, updatedPod, createdPod)
    	if len(errs) != 0 {
    		t.Errorf("Unexpected error: %v", errs.ToAggregate())
    	}
    
    	Strategy.PrepareForUpdate(ctx, updatedPod, createdPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/status_test.go

    	})
    
    	// Test initial state
    	assert.EventuallyEqual(t, getIPs(ing, "ingress", "default"), []string{serviceIP})
    
    	// Update service IP
    	updated := ingressService.DeepCopy()
    	updated.Status.LoadBalancer.Ingress = []corev1.LoadBalancerIngress{{IP: "5.6.7.8"}}
    	svc.Update(updated)
    	assert.EventuallyEqual(t, getIPs(ing, "ingress", "default"), []string{"5.6.7.8"})
    
    	// Remove service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    	}
    
    	antiTerms, err := framework.GetAffinityTerms(pod, framework.GetPodAntiAffinityTerms(pod.Spec.Affinity))
    	if err != nil {
    		return framework.Queue, err
    	}
    
    	// Pod is updated. Return Queue when the updated pod matching the target pod's affinity or not matching anti-affinity.
    	// Note that, we don't need to check each affinity individually when the Pod has more than one affinity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/listProperty/groovy/build.gradle

    // Don't need to update the consumer.inputFiles property. This is automatically updated as producer.outputFile changes
    producerOne.configure { outputFile = layout.buildDirectory.file('one.txt') }
    producerTwo.configure { outputFile = layout.buildDirectory.file('two.txt') }
    
    // Change the build directory.
    // Don't need to update the task properties. These are automatically updated as the build directory changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. pkg/util/taints/taints.go

    }
    
    // AddOrUpdateTaint tries to add a taint to annotations list. Returns a new copy of updated Node and true if something was updated
    // false otherwise.
    func AddOrUpdateTaint(node *v1.Node, taint *v1.Taint) (*v1.Node, bool, error) {
    	newNode := node.DeepCopy()
    	nodeTaints := newNode.Spec.Taints
    
    	var newTaints []v1.Taint
    	updated := false
    	for i := range nodeTaints {
    		if taint.MatchTaint(&nodeTaints[i]) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. pkg/test/fakes/gce_metadata_server/Makefile

    MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
    MD_PATH := $(dir $(MKFILE_PATH))
    IMG ?= gcr.io/istio-testing/fake-gce-metadata
    
    # NOTE: TAG should be updated whenever changes are made in this directory
    # This should also be updated in dependent components
    TAG := 1.2
    
    all: build_and_push clean
    
    build_and_push:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. pkg/proxy/config/config_test.go

    	state   map[types.NamespacedName]*v1.Service
    	synced  bool
    	updated chan []*v1.Service
    	process func([]*v1.Service)
    }
    
    func NewServiceHandlerMock() *ServiceHandlerMock {
    	shm := &ServiceHandlerMock{
    		state:   make(map[types.NamespacedName]*v1.Service),
    		updated: make(chan []*v1.Service, 5),
    	}
    	shm.process = func(services []*v1.Service) {
    		shm.updated <- services
    	}
    	return shm
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top