Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,749 for outdated (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProvider.java

                mutated = true;
            }
    
            @Override
            public void setStatusScheme(List<String> scheme) {
                this.statusScheme = scheme;
                mutated = true;
            }
    
            @Override
            public void attributes(Action<? super AttributeContainer> attributesConfiguration) {
                mutated = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemNodeWithChildrenTest.groovy

            ['aa/b1', 'ab/a1', 'name', 'name1/some', 'name2/other/third'],
            ("a".."z").toList(),
            ("a".."z").collect { "$it/$it".toString() }.toList(),
        ]
    
        /**
         * The queried/updated path has no common prefix with any of the initial children of the node under test.
         *
         * E.g.
         *   path: 'name0/some
         *   children: ['name/some', 'other']
         * or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. pkg/kubelet/status/state/state_mem.go

    	}
    
    	s.podAllocation[podUID][containerName] = alloc
    	klog.V(3).InfoS("Updated container resource allocation", "podUID", podUID, "containerName", containerName, "alloc", alloc)
    	return nil
    }
    
    func (s *stateMemory) SetPodResourceAllocation(a PodResourceAllocation) error {
    	s.Lock()
    	defer s.Unlock()
    
    	s.podAllocation = a.Clone()
    	klog.V(3).InfoS("Updated pod resource allocation", "allocation", a)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top