Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for distributionType (0.35 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

         */
        @Option(option = "distribution-type", description = "The type of the Gradle distribution to be used by the wrapper.")
        public void setDistributionType(DistributionType distributionType) {
            this.distributionType = distributionType;
        }
    
        /**
         * The list of available gradle distribution types.
         */
        @OptionValues("distribution-type")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. pilot/pkg/status/distribution/reporter.go

    		}
    	}
    	return res, nil
    }
    
    type distributionEvent struct {
    	conID            string
    	distributionType xds.EventType
    	nonce            string
    }
    
    func (r *Reporter) QueryLastNonce(conID string, distributionType xds.EventType) (noncePrefix string) {
    	key := GenStatusReporterMapKey(conID, distributionType)
    	r.mu.RLock()
    	defer r.mu.RUnlock()
    	return r.status[key]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            when:
            run "wrapper", "--gradle-version", "2.13", "--distribution-type", distributionType, "--no-validate-url"
    
            then:
            file("gradle/wrapper/gradle-wrapper.properties").text.contains("distributionUrl=https\\://services.gradle.org/distributions/gradle-2.13-${distributionType}.zip")
    
            where:
            distributionType << ["bin", "all"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

            expect:
            TaskPropertyTestUtils.getProperties(wrapper).keySet() == WrapUtil.toSet(
                "distributionBase", "distributionPath", "distributionUrl", "distributionSha256Sum",
                "distributionType", "archiveBase", "archivePath", "gradleVersion", "networkTimeout", "validateDistributionUrl")
        }
    
        def "execute with extant wrapper jar parent directory and extant wrapper jar"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/ads.go

    func reportAllEventsForProxyNoPush(con *Connection, statusReporter DistributionStatusCache, nonce string) {
    	if statusReporter == nil {
    		return
    	}
    	for distributionType := range AllTrackingEventTypes {
    		statusReporter.RegisterEvent(con.ID(), distributionType, nonce)
    	}
    }
    
    // reportEventsForUnWatched is to report events for unwatched types after push.
    // e.g. there is no rds if no route configured for gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/hns.go

    		SourceVIP: sourceVip,
    		PortMappings: []hcn.LoadBalancerPortMapping{
    			{
    				Protocol:         uint32(protocol),
    				InternalPort:     internalPort,
    				ExternalPort:     externalPort,
    				DistributionType: lbDistributionType,
    				Flags:            lbPortMappingFlags,
    			},
    		},
    		FrontendVIPs: vips,
    		SchemaVersion: hcn.SchemaVersion{
    			Major: 2,
    			Minor: 0,
    		},
    		Flags: lbFlags,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

            File propertiesFile = WrapperGenerator.getPropertiesFile(jarFile);
            String distributionUrl = WrapperGenerator.getDistributionUrl(GradleVersion.current(), WrapperDefaults.DISTRIBUTION_TYPE);
            WrapperGenerator.generate(
                WrapperDefaults.ARCHIVE_BASE, WrapperDefaults.ARCHIVE_PATH,
                WrapperDefaults.DISTRIBUTION_BASE, WrapperDefaults.DISTRIBUTION_PATH,
                null,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top