Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * The behavior of this repository is otherwise the same as those added by {@link #maven(org.gradle.api.Action)}.
         * <p>
         * Examples:
         * <pre class='autoTestedWithDeprecations'>
         * repositories {
         *     jcenter()
         * }
         * </pre>
         *
         * @return the added resolver
         * @see #jcenter(Action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  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. 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)
  8. 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)
  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. releasenotes/notes/authz-ext-authz.yaml

      - **Added** the `timeout` field to configure the timeout (default is 10m) between the ext_authz filter and the external service.
      - **Added** the `include_additional_headers_in_check` field to send additional headers to the external service.
      - **Added** the `include_request_body_in_check` field to send the body to the external service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 29 06:43:43 UTC 2021
    - 1K bytes
    - Viewed (0)
Back to top