Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,023 for addSdk (0.1 sec)

  1. src/cmd/go/testdata/mod/example.net_pkgadded_v1.2.0.txt

    Written by hand.
    Test module with a root package added in v1.1.0
    and a subpackage added in v1.2.0.
    
    -- .mod --
    module example.net/pkgadded
    
    go 1.16
    -- .info --
    {"Version":"v1.2.0"}
    -- go.mod --
    module example.net/pkgadded
    
    go 1.16
    -- pkgadded.go --
    // Package pkgadded was added in v1.1.0.
    package pkgadded
    -- subpkg/subpkg.go --
    // Package subpkg was added in v1.2.0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 384 bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

            file("build/output/${normalizedPaths.added}").text == "other input"
    
            where:
            pathSensitivity           | normalizedPaths
            PathSensitivity.RELATIVE  | [modified: "in/some/subdir/input1.txt", added: "in/some/other/subdir/other-input.txt", removed: "in/some/subdir/input2.txt"]
            PathSensitivity.NAME_ONLY | [modified: "input1.txt", added: "other-input.txt", removed: "input2.txt"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  4. pkg/kubelet/pluginmanager/cache/desired_state_of_world_test.go

    */
    
    package cache
    
    import (
    	"runtime"
    	"testing"
    
    	"github.com/stretchr/testify/require"
    )
    
    // Calls AddOrUpdatePlugin() to add a plugin
    // Verifies newly added plugin exists in GetPluginsToRegister()
    // Verifies newly added plugin returns true for PluginExists()
    func Test_DSW_AddOrUpdatePlugin_Positive_NewPlugin(t *testing.T) {
    	dsw := NewDesiredStateOfWorld()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/fmt/errors_test.go

    		wantText:   "inner error",
    		wantUnwrap: wrapped,
    	}, {
    		err:        fmt.Errorf("added context: %w", wrapped),
    		wantText:   "added context: inner error",
    		wantUnwrap: wrapped,
    	}, {
    		err:        fmt.Errorf("%w with added context", wrapped),
    		wantText:   "inner error with added context",
    		wantUnwrap: wrapped,
    	}, {
    		err:        fmt.Errorf("%s %w %v", "prefix", wrapped, "suffix"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 18:40:40 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top