Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,060 for addSdk (0.25 sec)

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

            DefaultFileChange.removed("somePath", "test", FileType.Directory, "")   | "has been removed"
            DefaultFileChange.added("somePath", "test", FileType.RegularFile, "")   | "has been added"
            DefaultFileChange.added("somePath", "test", FileType.Directory, "")     | "has been added"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ScriptHandlerScope.kt

         * @param group the group of the module to be added as a dependency.
         * @param name the name of the module to be added as a dependency.
         * @param version the optional version of the module to be added as a dependency.
         * @param configuration the optional configuration of the module to be added as a dependency.
         * @param classifier the optional classifier of the module artifact to be added as a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

     *
     * @param group the group of the module to be added as a dependency.
     * @param name the name of the module to be added as a dependency.
     * @param version the optional version of the module to be added as a dependency.
     * @param configuration the optional configuration of the module to be added as a dependency.
     * @param classifier the optional classifier of the module artifact to be added as a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top