Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,060 for addSdk (0.34 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/environment/base_test.go

    			if !ok {
    				versionTracking = &versionTracker{}
    				tracked[name] = versionTracking
    			}
    			if versionTracking.added != nil {
    				t.Errorf("Did not expect %s library to be added again at version %v. It was already added at version %v", name, vop.IntroducedVersion, versionTracking.added)
    			} else {
    				versionTracking.added = vop.IntroducedVersion
    				if versionTracking.removed != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/TrivialChangeDetectorTest.groovy

            0 * _
        }
    
        def "detects item added"() {
            when:
            detector.visitChangesSince([:], [one: 1], "test", visitor)
            then:
            1 * changeFactory.added("one", "test", 1) >> change
            then:
            1 * visitor.visitChange(change) >> true
            0 * _
        }
    
        def "detects multiple items added to empty"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/incrementalTask/tests/incrementalTaskRemovedOutput.out

    Executing non-incrementally
    ADDED: 1.txt
    ADDED: 2.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67 bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

        /**
         * Adds a repository to use for subsequent resolution requests. The order in which repositories are added matters,
         * repositories that were added first should also be searched first. When multiple repositories with the same
         * identifier are added, only the first repository being added will be used.
         *
         * @param repository The repository to add to the internal search chain, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/events.go

    	PodUpdate = "PodUpdate"
    )
    
    var (
    	// AssignedPodAdd is the event when a pod is added that causes pods with matching affinity terms
    	// to be more schedulable.
    	AssignedPodAdd = framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Add, Label: "AssignedPodAdd"}
    	// NodeAdd is the event when a new node is added to the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/par/work.go

    	mu      sync.Mutex
    	added   map[T]bool // items added to set
    	todo    []T        // items yet to be run
    	wait    sync.Cond  // wait when todo is empty
    	waiting int        // number of runners waiting for todo
    }
    
    func (w *Work[T]) init() {
    	if w.added == nil {
    		w.added = make(map[T]bool)
    	}
    }
    
    // Add adds item to the work set, if it hasn't already been added.
    func (w *Work[T]) Add(item T) {
    	w.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/runtime/pprof/vminfo_darwin.go

    				return true
    			}
    			return added // return true if at least one mapping was added
    		}
    		if isExecutable(info.Protection) {
    			// NOTE: the meaning/value of Offset is unclear. However,
    			// this likely doesn't matter as the text segment's file
    			// offset is usually 0.
    			addMapping(addr,
    				addr+memRegionSize,
    				read64(&info.Offset),
    				regionFilename(addr),
    				"")
    			added = true
    		}
    		addr += memRegionSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 23:35:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/grpc.yaml.golden

      namespace: default
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-default
      hosts:
      - first.domain.example
      http:
      - headers:
          request:
            add:
              my-added-header: added-value
            remove:
            - my-removed-header
        match:
        - headers:
            my-header:
              exact: some-value
          uri:
            prefix: /foo/
        name: default.grpc.0
        route:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. pkg/kube/inject/watcher_test.go

    	steps := []struct {
    		added   *v1.ConfigMap
    		updated *v1.ConfigMap
    		deleted *v1.ConfigMap
    	}{
    		{added: cm},
    
    		// Handle misconfiguration errors.
    		{updated: badCM},
    		{updated: cm},
    		{updated: badCM2},
    		{updated: badCM},
    		{updated: cm},
    		{updated: badCM3},
    		{updated: cm},
    
    		// Handle deletion.
    		{deleted: cm},
    		{added: cm},
    	}
    
    	for i, step := range steps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/http.yaml.golden

      hosts:
      - first.domain.example
      http:
      - headers:
          request:
            add:
              my-added-header: added-value
            remove:
            - my-removed-header
          response:
            add:
              my-added-resp-header: added-resp-value
            remove:
            - my-removed-header
        match:
        - headers:
            my-header:
              exact: some-value
          uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top