Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,556 for Sall (0.04 sec)

  1. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/tests/basicRuleSourcePlugin-all.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 87 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockingAllConfigurations/tests/locking-all.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 139 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CallInterceptionFilteringTest.groovy

        ) {
            def receiver = new CallInterceptionFilteringTestReceiver()
            def closure = instrumentedClasses.instrumentedClosure(call)
            if (shouldDelegate) {
                closure.delegate = receiver
                closure.call()
            } else {
                closure.call(receiver)
            }
            receiver.intercepted
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshotBuilder.java

            enterDirectory(directorySnapshot.getAccessType(), directorySnapshot.getAbsolutePath(), directorySnapshot.getName(), emptyDirectoryHandlingStrategy);
        }
    
        /**
         * Method to call before visiting all the entries of a directory.
         */
        void enterDirectory(FileMetadata.AccessType accessType, String absolutePath, String name, EmptyDirectoryHandlingStrategy emptyDirectoryHandlingStrategy);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/tests/basicRuleSourcePlugin-all.sample.conf

    # tag::cli[]
    # gradle hello
    # end::cli[]
    executable: gradle
    args: hello
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 124 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/InterceptScope.java

     */
    public abstract class InterceptScope {
    
        private enum CallType {
            METHOD("call method"),
            GET_PROPERTY("get property"),
            SET_PROPERTY("set property"),
            CONSTRUCTOR("call constructor");
    
            final String descriptorStringPrefix;
    
            CallType(String descriptorStringPrefix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ModelBlockTransformer.java

            Later, we will extract all the “up-front” information we need to know during compile time.
            This will mean that we only need to execute the rules themselves, and not any code to actually register the rules.
         */
    
        @Override
        public void call(SourceUnit source) throws CompilationFailedException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelectorTest.groovy

            expect:
            !accept("[1.0,2.0)", "2.0-final")
            !accept("[1.0,2.0)", "2.0-dev")
            !accept("[1.0,2.0)", "2.0.0-dev")
        }
    
        def "accepts candidate versions that fall into the selector's range"() {
            expect:
            accept("[1.0,2.0]", "1.0")
            accept("[1.0,2.0]", "1.2.3")
            accept("[1.0,2.0]", "2.0")
    
            accept("[1.0,2.0[", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ResettableConfiguration.java

         * resolution result. This new functionality should be applicable to all configurations -- those
         * used during buildscript classpath loading and normal configuration-time configurations.
         * By applying this functionality to all configurations, this method would no longer be required.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:33:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

        fun WriteContext.encodeLoop(coroutineContext: CoroutineContext) {
            do {
                val call = encodeCall!!
                suspend {
                    codec.run {
                        encode(call.value)
                    }
                }.startCoroutine(
                    Continuation(coroutineContext) {
                        when (val k = call.k) {
                            null -> {
                                encodeCall = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top