Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 232 for dsts (0.04 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractPolyglotIntegrationSpec.groovy

    import org.gradle.integtests.fixtures.polyglot.MultiProjectBuilder
    
    /**
     * An integration test which allows testing build scripts with both the
     * Groovy and Kotlin DSLs
     */
    @CompileStatic
    @PolyglotDslTest
    class AbstractPolyglotIntegrationSpec extends AbstractIntegrationSpec {
    
        private MultiProjectBuilder projectBuilder
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/BuildInitDsl.java

                    return language;
                }
            }
            TreeFormatter formatter = new TreeFormatter();
            formatter.node("The requested build script DSL '" + name + "' is not supported. Supported DSLs");
            formatter.startChildren();
            for (BuildInitDsl dsl : values()) {
                formatter.node("'" + dsl.getId() + "'");
            }
            formatter.endChildren();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    The `build` task compiles the ${language.raw} sources, links the object files into a shared library, and runs the tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/encoding/base64/base64_test.go

    			testEqual(t, `AppendDecode("", %q) = %q, want %q`, p.encoded, string(dst2), p.decoded)
    			if len(dst) > 0 && len(dst2) > 0 && &dst[0] != &dst2[0] {
    				t.Errorf("unexpected capacity growth: got %d, want %d", cap(dst2), cap(dst))
    			}
    		}
    	}
    }
    
    func TestDecoder(t *testing.T) {
    	for _, p := range pairs {
    		decoder := NewDecoder(StdEncoding, strings.NewReader(p.encoded))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/signing/maven-publish/kotlin/build.gradle.kts

                    description = "A concise description of my library"
                    url = "http://www.example.com/library"
                    properties = mapOf(
                        "myProp" to "value",
                        "prop.with.dots" to "anotherValue"
                    )
                    licenses {
                        license {
                            name = "The Apache License, Version 2.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/DefaultIvyPatternRepositoryLayout.java

     * At least one artifact pattern must be specified. If no Ivy patterns are specified, then the artifact patterns will be used.
     * Optionally supports a Maven style layout for the 'organisation' part, replacing any dots with forward slashes.
     */
    public class DefaultIvyPatternRepositoryLayout extends AbstractRepositoryLayout implements IvyPatternRepositoryLayout {
        private final Set<String> artifactPatterns = new LinkedHashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    						var s = this._get_settings().themes;
    						this.data.themes.dots = s.dots;
    						this.data.themes.icons = s.icons;
    						this.set_theme(s.theme, s.url);
    					}, this))
    				.bind("loaded.jstree", $.proxy(function () {
    						// bound here too, as simple HTML tree's won't honor dots & icons otherwise
    						if(!this.data.themes.dots) { this.hide_dots(); }
    						else { this.show_dots(); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  8. docs/distributed/README.md

    > **NOTE:** `{1...n}` shown have 3 dots! Using only 2 dots `{1..n}` will be interpreted by your shell and won't be passed to MinIO server, affecting the erasure coding order, which would impact performance and high availability. **Always use ellipses syntax `{1...n}` (3 dots!) for optimal erasure-code distribution**
    
    ### Expanding existing distributed setup
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperCrossVersionIntegrationTest.groovy

            assert result.output.contains("hello from $executionVersion.version.version")
            assert result.output.contains("using distribution at ${executer.gradleUserHomeDir.file("wrapper/dists")}")
            assert result.output.contains("using Gradle user home at $executer.gradleUserHomeDir")
        }
    
        static void cleanupDaemons(GradleExecuter executer, GradleDistribution executionVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/AbstractWrapperIntegrationSpec.groovy

        public static final String NOT_EMBEDDED_REASON = "wrapperExecuter requires a real distribution"
        void installationIn(TestFile userHomeDir) {
            def distDir = userHomeDir.file("wrapper/dists/${FilenameUtils.getBaseName(distribution.binDistribution.absolutePath)}").assertIsDir()
            assert distDir.listFiles().length == 1
            distDir.listFiles()[0].file("gradle-${distribution.version.baseVersion.version}").assertIsDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top