Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 770 for Sall (0.03 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

                    conf 'org:testA:1.0'
                    conf 'org:testB:1.0'
                }
    
                // fix the conflict between modules providing the same capability using resolution rules
                configurations.all {
                    resolutionStrategy {
                       capabilitiesResolution.withCapability('org.test:cap') {
                          $rule
                          because "we like testB better"
                       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptFileUtil.java

            return getFileNames(BUILD_FILE_BASE_NAME);
        }
    
        public static String[] getValidExtensions() {
            List<ScriptingLanguage> scriptingLanguages = ScriptingLanguages.all();
            String[] extensions = new String[scriptingLanguages.size()];
            for (int i = 0; i < scriptingLanguages.size(); i++) {
                extensions[i] = scriptingLanguages.get(i).getExtension();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

        configureAsRuntimeJarClasspath(objects)
    }
    
    enum class Filtering {
        PUBLIC_API, ALL
    }
    
    val filteredAttribute: Attribute<Filtering> = Attribute.of("org.gradle.apijar.filtered", Filtering::class.java)
    
    dependencies {
        artifactTypes.getByName("jar") {
            attributes.attribute(filteredAttribute, Filtering.ALL)
        }
    
        // Filters out classes that are not exposed by our API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/Module.java

         */
        Set<Module> getRequiredModules();
    
        /**
         * Returns the transitive closure of all modules required by this module, including the module itself.
         */
        Set<Module> getAllRequiredModules();
    
        /**
         * Returns the implementation + runtime classpath of the transitive closure of all modules required by this module, including the module itself.
         */
        ClassPath getAllRequiredModulesClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/InstrumentationAnalysisTransform.java

    /**
     * A transform that analyzes an artifact: it discovers all super types for classes in an artifact and all class dependencies.<br><br>
     *
     * Outputs 5 files:<br>
     * 1. Instrumentation classpath marker file.<br>
     * 2. A properties file with original file hash and original file name.<br>
     * 3. A file with all classes that this artifact depends on.<br>
     * 4. A properties file with all direct super types for every class in an artifact.<br><br>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:19:14 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

            }
    }
    
    
    class LazyEnvironmentVariable(private val callable: Callable<String>) {
        override fun toString(): String {
            return callable.call()
        }
    }
    
    
    private
    fun Project.loadScenariosFromFile(testProject: String): List<String> {
        val scenarioFile = repoRoot().file("performance-test-splits/include-$testProject-performance-scenarios.csv").asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    `--single-path` (optional)::
    Render only a single path to the dependency.
    `--all-variants` (optional)::
    Render information about all variants, not only the selected variant.
    
    The following code snippet demonstrates how to run a dependency insight report for all paths to a dependency named "commons-codec" within the "scm" configuration:
    
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    A component metadata rule can be applied to all modules — `all(rule)` — or to a selected module — `withModule(groupAndName, rule)`.
    Usually, a rule is specifically written to enrich metadata of one specific module and hence the `withModule` API should be preferred.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

        def "unfriendly behavior of command line parsing"() {
            when:
            run '-all'
    
            then:
            "should fail with a decent error, not internal error (applies to all CommandLineArgumentExceptions)"
            "should complain that there's no '-all' option"
    
            when:
            run 'tasks', '-refresh-dependencies'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

                }
    
                task foo {
                    dependsOn tasks.withType(Zip)
                    doLast {
                        assert defaultTaskRealizedCount == 0, "All DefaultTask shouldn't be realized"
                        assert zipTaskRealizedCount == 1, "All Zip task should be realized"
                    }
                }
            '''
    
            expect:
            succeeds "foo"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top