Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 649 for Sall (0.1 sec)

  1. 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)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionTracerTest.kt

                f(0) // must be an unresolved property x
                """.trimIndent(),
                resolver
            )
    
            val call = result.additions.single().dataObject.originElement as FunctionCall
            assertIs<ObjectOrigin.FunctionOrigin>(resolver.trace.expressionResolution(call).result)
    
            val arg = (call.args.single() as FunctionArgument.Positional).expr
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/RootOfNestedBuildTree.java

            ServiceRegistry services = gradle.getServices();
            BuildOperationRunner buildOperationRunner = services.get(BuildOperationRunner.class);
            return buildOperationRunner.call(new CallableBuildOperation<T>() {
                @Override
                public T call(BuildOperationContext context) {
                    T result = action.apply(buildTreeLifecycleController);
                    context.setResult(new RunNestedBuildBuildOperationType.Result() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] [Review Contribution Guidelines](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md).
    - [ ] Make sure that all commits are [signed off](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff) to indicate that you agree to the terms of [Developer Certificate of Origin](https://developercertificate.org/).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/AllFeaturesShouldBeAnnotated.groovy

    import spock.lang.Ignore
    
    import java.lang.annotation.ElementType
    import java.lang.annotation.Retention
    import java.lang.annotation.RetentionPolicy
    import java.lang.annotation.Target
    
    /**
     * Make sure all feature methods are annotated by {@link @RunFor}
     *
     * @see {@link @RunFor}
     */
    @Target([ElementType.TYPE])
    @Retention(RetentionPolicy.RUNTIME)
    @ExtensionAnnotation(AllFeaturesShouldBeAnnotatedByRunForExtension.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/time/BuildScanClock.java

     *
     * The provider is _required_ to provide monotonic timestamps.
     *
     * @since 4.2
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface BuildScanClock {
    
        /**
         * The current wall clock time.
         */
        long getCurrentTime();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute1InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromStringArray(), "command.execute()", "", ""],
                [fromStringList(), "command.execute()", "", ""],
                [fromObjectList(), "command.execute()", "", ""],
                // null-safe call
                [fromGroovyString(), "command?.execute()", "", ""],
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top