Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 183 for addSdk (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		namespace:  fmt.Sprintf("test-ns-1-%t", recursive),
    		watchTests: []*testWatchStruct{{basePod, true, watch.Added}},
    		pred:       storage.Everything,
    	}, {
    		name:       "key updated to match predicate",
    		namespace:  fmt.Sprintf("test-ns-2-%t", recursive),
    		watchTests: []*testWatchStruct{{basePod, false, ""}, {basePodAssigned, true, watch.Added}},
    		pred: storage.SelectionPredicate{
    			Label: labels.Everything(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            expect:
            def initialValue = toMutable(["abc"])
            property.set(initialValue)
            assertValueIs(["abc"])
            initialValue.add("added")
            assertValueIs(["abc", "added"])
        }
    
        def "queries underlying provider for every call to get()"() {
            def provider = Stub(ProviderInternal)
            provider.type >> List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            property.put('k2', 'v2')
            property.put('k3', 'v3')
    
            expect:
            assertValueIs(['k1': 'v1', 'k2': 'v2', 'k3': 'v3'])
        }
    
        def "put overrides entries added earlier"() {
            given:
            property.set(['k': 'v1'])
            property.put('k', 'v2')
    
            expect:
            assertValueIs(['k': 'v2'])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		nc.knownNodeSet[added[i].Name] = added[i]
    		nc.addPodEvictorForNewZone(logger, added[i])
    		nc.markNodeAsReachable(ctx, added[i])
    	}
    
    	for i := range deleted {
    		logger.V(1).Info("Controller observed a Node deletion", "node", klog.KRef("", deleted[i].Name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    // is added so there is no chance the pod is already in active/unschedulable/backoff queues
    func (p *PriorityQueue) Add(logger klog.Logger, pod *v1.Pod) error {
    	p.lock.Lock()
    	defer p.lock.Unlock()
    
    	pInfo := p.newQueuedPodInfo(pod)
    	gated := pInfo.Gated
    	if added, err := p.addToActiveQ(logger, pInfo); !added {
    		return err
    	}
    	if p.unschedulablePods.get(pod) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            then:
            toList(container) == [a]
    
            when:
            container.addAll([a, b])
    
            then:
            toList(container) == [a, b]
        }
    
        def "element added using provider is not realized when added"() {
            containerAllowsExternalProviders()
            def provider = Mock(ProviderInternal)
    
            when:
            container.addLater(provider)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    )
    
    // Reasons for DaemonSet events
    const (
    	// SelectingAllReason is added to an event when a DaemonSet selects all Pods.
    	SelectingAllReason = "SelectingAll"
    	// FailedPlacementReason is added to an event when a DaemonSet can't schedule a Pod to a specified node.
    	FailedPlacementReason = "FailedPlacement"
    	// FailedDaemonPodReason is added to an event when the status of a Pod of a DaemonSet is 'Failed'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

        TF_OperationDescription* desc, TF_Status* status);
    
    // If this function succeeds:
    //   * *status is set to an OK value,
    //   * a TF_Operation is added to the graph,
    //   * a non-null value pointing to the added operation is returned --
    //     this value is valid until the underlying graph is deleted.
    // Otherwise:
    //   * *status is set to a non-OK value,
    //   * the graph is not modified,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			as := convertServices(*tt.current)
    			bs := convertServices(*tt.new)
    			added, deleted, updated, unchanged := servicesDiff(as, bs)
    			for i, item := range []struct {
    				hostnames []host.Name
    				services  []*model.Service
    			}{
    				{tt.added, added},
    				{tt.deleted, deleted},
    				{tt.updated, updated},
    				{tt.unchanged, unchanged},
    			} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    		hasAddedPods  bool
    		podState      string
    		expectedFound bool // Found pod is added to DSW
    	}{
    		{
    			desc:          "HasAddedPods is false, ShouldPodRuntimeBeRemoved and ShouldPodContainerBeTerminating are both true",
    			hasAddedPods:  false,
    			podState:      Removed,
    			expectedFound: false, // Pod should not be added to DSW
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top