Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,379 for distributionId (0.48 sec)

  1. maven-core/src/main/resources/org/apache/maven/messages/build.properties

    # KIND, either express or implied.  See the License for the
    # specific language governing permissions and limitations
    # under the License.
    
    buildNumber=${buildNumber}
    version=${project.version}
    distributionId=${distributionId}
    distributionShortName=${distributionShortName}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 12:35:52 UTC 2019
    - 956 bytes
    - Viewed (0)
  2. apache-maven/pom.xml

      </parent>
    
      <artifactId>apache-maven</artifactId>
      <packaging>pom</packaging>
    
      <name>Apache Maven Distribution</name>
      <description>The Apache Maven distribution, source and binary, in zip and tar.gz formats.</description>
    
      <properties>
        <distributionFileName>${distributionId}-${project.version}</distributionFileName>
      </properties>
    
      <dependencies>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pom.xml

        <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
        <maven.baseline>3.8.8</maven.baseline>
        <!-- Control the name of the distribution and information output by mvn -->
        <distributionId>apache-maven</distributionId>
        <distributionShortName>Maven</distributionShortName>
        <distributionName>Apache Maven</distributionName>
        <maven.site.path>ref/4-LATEST</maven.site.path>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. platforms/software/plugins-distribution/src/main/java/org/gradle/api/distribution/Distribution.java

         * <p>
         * By default, no classifier is added.
         *
         * @since 7.6
         */
        @Incubating
        Property<String> getDistributionClassifier();
    
        /**
         * The contents of the distribution.
         */
        CopySpec getContents();
    
        /**
         * Configures the contents of the distribution.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 20:49:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

     *
     * While the content of the Docs and Src distribution can be no further controlled,
     * the content of the Bin (as well as Normalized and All) distribution are controlled
     * by the dependencies defined on other projects in the build. This allows the
     * definition of reduced distributions (e.g. a Core distribution without Native plugins)
     * to be used for testing.
     *
     * Other projects may depend on distributions using on their test runtime classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. pkg/monitoring/distribution.go

    	api "go.opentelemetry.io/otel/metric"
    
    	"istio.io/istio/pkg/log"
    )
    
    type distribution struct {
    	baseMetric
    	d api.Float64Histogram
    	// precomputedRecordOption is just a precomputation to avoid allocations on each record call
    	precomputedRecordOption []api.RecordOption
    }
    
    var _ Metric = &distribution{}
    
    func newDistribution(o options) *distribution {
    	d, err := meter().Float64Histogram(o.name,
    		api.WithDescription(o.description),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/Distribution.java

    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.logging.progress.ProgressLoggerFactory;
    import org.gradle.tooling.internal.protocol.InternalBuildProgressListener;
    
    public interface Distribution {
        String getDisplayName();
    
        ClassPath getToolingImplementationClasspath(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/CachingToolingImplementationLoaderTest.groovy

            def connection2 = Mock(ConsumerConnection)
            def distribution1 = Mock(Distribution)
            def distribution2 = Mock(Distribution)
    
            when:
            def impl = loader.create(distribution1, loggerFactory, progressListener, params, cancellationToken)
            def impl2 = loader.create(distribution2, loggerFactory, progressListener, params, cancellationToken)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 09:39:07 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

            // The actual user home dir will be a subfolder using the name of the distribution.
            gradleUserHomeDir = intTestHomeDir
            // The user home dir is not wiped out by clean. Move the daemon working space underneath the build dir so they don't pile up on CI.
            // The actual daemon registry dir will be a subfolder using the name of the distribution.
            daemonRegistry = repoRoot().dir("build/daemon")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/software/plugins-distribution/src/main/resources/META-INF/gradle-plugins/org.gradle.distribution.properties

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 677 bytes
    - Viewed (0)
Back to top