Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,719 for central (0.16 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            static errorProne = "3.1.0"
    
            // https://plugins.gradle.org/plugin/com.google.protobuf
            static protobufPlugin = "0.9.4"
    
            // https://central.sonatype.com/artifact/com.google.protobuf/protobuf-java/versions
            static protobufTools = "4.26.1"
    
            // https://plugins.gradle.org/plugin/org.gradle.test-retry
            static testRetryPlugin = "1.5.8"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                        .relocation(model.getDistributionManagement().getRelocation())
                        .build());
            }
            // only keep repositories other than 'central'
            builder.pluginRepositories(pruneRepositories(model.getPluginRepositories()));
            builder.repositories(pruneRepositories(model.getRepositories()));
            return builder;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    
    /**
     * Provides a central location for handling failures encountered during
     * each stage of the variant selection process during dependency resolution.
     *
     * All variant selection failures encountered during selection by the {@link GraphVariantSelector} or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmProjectInitDescriptor.java

                "java-library");
        }
    
        private void addMavenCentral(BuildScriptBuilder buildScriptBuilder) {
            buildScriptBuilder.repositories().mavenCentral("Use Maven Central for resolving dependencies.");
        }
    
        private void addStandardDependencies(BuildScriptBuilder buildScriptBuilder, boolean constraintsDefined) {
            switch (getLanguage()) {
                case GROOVY:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

        def "gradle ignores maven mirror configuration for uploading archives"() {
            given:
            m2.globalSettingsFile << """
    <settings>
      <mirrors>
        <mirror>
          <id>ACME</id>
          <name>ACME Central</name>
          <url>http://acme.maven.org/maven2</url>
          <mirrorOf>*</mirrorOf>
        </mirror>
      </mirrors>
    </settings>
    """
    
            and:
            settingsFile << "rootProject.name = 'root'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    include::sample[dir="snippets/java-library/module/groovy",files="build.gradle[tags=declareVersion]"]
    ====
    
    === Using libraries that are not modules
    
    You probably want to use external libraries, like OSS libraries from Maven Central, in your modular Java project.
    Some libraries, in their newer versions, are already full modules with a module descriptor.
    For example, `com.google.code.gson:gson:2.8.9` that has the module name `com.google.gson`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    		base, end uintptr
    	}
    
    	// central free lists for small size classes.
    	// the padding makes sure that the mcentrals are
    	// spaced CacheLinePadSize bytes apart, so that each mcentral.lock
    	// gets its own cache line.
    	// central is indexed by spanClass.
    	central [numSpanClasses]struct {
    		mcentral mcentral
    		pad      [(cpu.CacheLinePadSize - unsafe.Sizeof(mcentral{})%cpu.CacheLinePadSize) % cpu.CacheLinePadSize]byte
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    The actual version will be subject to traditional conflict resolution, if any.
    
    [[sub:using-platform-to-control-transitive-deps]]
    == Using a platform to control transitive versions
    
    A <<dependency_management_terminology.adoc#sub::terminology_platform,platform>> is a special software component which can be used to control transitive dependency versions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. docs/es/docs/async.md

    Y como la mayor parte del tiempo de ejecución lo coge el trabajo real (en lugar de esperar), y el trabajo en un sistema lo realiza una <abbr title = "Central Processing Unit. En español: Unidad Central de Procesamiento."> CPU </abbr>, a estos problemas se les llama "<abbr title="En español: atado a CPU.">CPU bound</abbr>".
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {1}, 0, 0, 1, new byte[] {1});
        testRotate(new byte[] {1}, 1, 0, 1, new byte[] {1});
        testRotate(new byte[] {1}, 1, 1, 1, new byte[] {1});
    
        // Rotate the central 5 elements, leaving the ends as-is
        testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, -6, 1, 6, new byte[] {0, 2, 3, 4, 5, 1, 6});
        testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, -1, 1, 6, new byte[] {0, 2, 3, 4, 5, 1, 6});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top