Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,003 for addSdk (0.2 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

        }
    
        def added(String path) {
            added((path): path)
        }
    
        def added(Map<String, String> entry) {
            def singleEntry = Iterables.getOnlyElement(entry.entrySet())
            DefaultFileChange.added(singleEntry.key, "test", FileType.RegularFile, singleEntry.value)
        }
    
        def removed(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/SortedMapDiffUtilTest.groovy

        def "diff #previous and #current"() {
            expect:
            diff(previous, current) == [removed: removed, updated: updated, added: added]
    
            where:
            previous             | current              | removed              | updated    | added
            ['a', 'b', 'c']      | ['b', 'c', 'd']      | ['a']                | ['b', 'c'] | ['d']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/incrementalTask/tests/incrementalTaskChangedProperty.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. platforms/documentation/docs/src/snippets/tasks/incrementalTask/tests/incrementalTaskFirstRun.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)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                    }
                }
            }
    
            void added() {
                DefaultFileChange added = DefaultFileChange.added(current.getKey(), propertyTitle, current.getValue().getType(), current.getValue().getNormalizedPath());
                changeConsumer.visitChange(added);
                current = nextEntry(currentEntries);
            }
    
            void removed() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyConstraintHandlerScope.kt

            get() = constraints
    
        /**
         * Adds a dependency constraint to the given configuration.
         *
         * @param dependencyConstraintNotation notation for the dependency constraint to be added.
         * @return The dependency constraint.
         * @see [DependencyConstraintHandler.add]
         */
        operator fun String.invoke(dependencyConstraintNotation: Any): DependencyConstraint =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top