Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,556 for Sall (0.05 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonCommandExecution.java

     * <p>
     * The given actions will be executed in the order given to the constructor, and should use the {@link #proceed()} method to allow
     * the next action to run. If an action does not call {@code proceed()}, it will be the last action that executes.
     */
    public class DaemonCommandExecution {
    
        private final DaemonServerConfiguration configuration;
        final private DaemonConnection connection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/collections/ImmutableFilteredList.java

        private ImmutableFilteredList(List<T> source, BitSet filter) {
            this.source = source;
            this.filter = filter;
        }
    
        /**
         * Creates an {@code ImmutableFilteredList} which contains all the elements of {@code source}.
         *
         * This method assumes that {@code source} will not be mutated after this method is called.
         */
        public static <T> ImmutableFilteredList<T> allOf(List<T> source) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/GradleUserHomeScopeFileTimeStampInspector.java

        }
    
        /**
         * Detects whether the file system has a reliable high precision timestamp.
         *
         * If `isCurrentTimestampHighPrecision` is in `millisecond` precision, then all file timestamps will have `millisecond` precision
         * since we check all Java APIs that can return a high or a low precision, and we choose the one with the lowest precision.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/BinarySpec.java

         * @return the sources owned by the binary.
         */
        ModelMap<LanguageSourceSet> getSources();
    
        /**
         * Returns all inputs of the binary. This includes source sets owned by the binary,
         * and other source sets created elsewhere (e.g. inherited from the binary's component).
         *
         * @return all inputs of the binary.
         */
        DomainObjectSet<LanguageSourceSet> getInputs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/TestNGOptionsIntegrationTest.groovy

            buildFile << """
                testing {
                    suites {
                        test {
                            useTestNG()
                            targets.all {
                                testTask.configure {
                                    options {
                                        excludeGroups "exclude"
                                    }
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top