Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for Sall (0.03 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

                    result -> result.fold(
                        file -> left(Convert.fileToURL(file)),
                        transform -> right(() -> Convert.fileToURL(transform.call()))
                    )
                );
            }
            return Optional.of(left(original));
        }
    
        private Optional<Either<File, Callable<File>>> cachedFile(
            File original,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            configurationCacheRun(":a:thing")
    
            then:
            with(fixture.all(LoadBuildBuildOperationType)) {
                size() == 2
                with(get(0)) {
                    details.buildPath == ':'
                }
                with(get(1)) {
                    details.buildPath == ':buildSrc'
                }
            }
            with(fixture.all(LoadProjectsBuildOperationType)) {
                size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            try {
                module.maybeUpdateSelection(resolveState.getConflictTracker());
            } catch (ModuleVersionResolveException e) {
                // Ignore: All selectors failed, and will have failures recorded
                return;
            }
    
            // If no current selection for module, just use the candidate.
            if (currentSelection == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

        }
    
        // Previously StartParameter's toString got wildly out of sync with the state inside of it
        // Ensure that all state is represented in the toString, so it's more useful for debugging
        // In the future StartParameter should be replaced with a `record` so this doesn't need to be checked
        void "all state is represented in toString"() {
            given:
            def parameter = new StartParameter()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. JavadocStyleGuide.md

    ```
    
    ## 1.3 Code blocks and snippets
    
    `<pre>` is the default HTML tag for preformatted text.
    All code blocks and multi-line snippets should be wrapped in `<pre>{@code ...... }</pre>` at minimum.
    
    Code blocks can be optionally formatted and highlighted using [`highlight.js`](https://highlightjs.org/) with the `<code>` tag.
    For this, all code blocks and multi-line snippets should be wrapped in `<code class="language-*****"></code>`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

        private val internalTypesCodec: Codec<Any?>,
        private val ordinalGroups: OrdinalGroupFactory
    ) {
    
        suspend fun WriteContext.writeWork(work: ScheduledWork) {
            // Share bean instances across all nodes (except tasks, which have their own isolate)
            withGradleIsolate(owner, internalTypesCodec) {
                doWrite(work)
            }
        }
    
        suspend fun ReadContext.readWork(): ScheduledWork =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            when:
            def dupesWithCount = dupes.collectEntries { [it.key, it.value.size()]}
    
            then:
            dupesWithCount.isEmpty()
        }
    
        def "all files under lib directory are jars"() {
            when:
            def nonJarLibEntries = libZipEntries.findAll { !it.name.endsWith(".jar") }
    
            then:
            nonJarLibEntries.isEmpty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

    
    /**
     * Creates a container for managing named objects of the specified type.
     *
     * The specified type must have a public constructor which takes the name as a [String] parameter.
     *
     * All objects **MUST** expose their name as a bean property named `name`.
     * The name must be constant for the life of the object.
     *
     * @param T The type of objects for the container to contain.
     * @return The container.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

                projectConfigured(":")
                modelsCreated(":a")
                modelsReused(":", ":b", ":buildSrc")
            }
            outputContains("creating model for project ':a'")
        }
    
        def "invalidates all cached models when build scoped input changes"() {
            given:
            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                    config.clear()
                }
                testDirectory.file('initial-commit').createNewFile()
                git.add().addFilepattern("initial-commit").call()
                git.commit().setMessage("Initial commit").call()
            }
        }
    
        /**
         * Want syntax highlighting inside of IntelliJ? Consider using {@link AbstractIntegrationSpec#buildFile(String)}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top