Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for distributionId (0.64 sec)

  1. .teamcity/test-buckets.json

    					"scala",
    					"plugins-java-base",
    					"build-cache",
    					"messaging",
    					"war",
    					"java-platform",
    					"build-profile",
    					"resources-gcs",
    					"ear",
    					"plugins-distribution",
    					"build-cache-local"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"composite-builds",
    					"declarative-dsl-core",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        protected AbstractGradleExecuter(GradleDistribution distribution, TestDirectoryProvider testDirectoryProvider) {
            this(distribution, testDirectoryProvider, GradleVersion.current());
        }
    
        protected AbstractGradleExecuter(GradleDistribution distribution, TestDirectoryProvider testDirectoryProvider, GradleVersion gradleVersion) {
            this(distribution, testDirectoryProvider, gradleVersion, IntegrationTestBuildContext.INSTANCE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    			}
    		}
    		return fi, nil, nil, toObjectErr(err, bucket, object)
    	}
    
    	if !fi.Deleted && len(fi.Erasure.Distribution) != len(onlineDisks) {
    		err := fmt.Errorf("unexpected file distribution (%v) from online disks (%v), looks like backend disks have been manually modified refusing to heal %s/%s(%s)",
    			fi.Erasure.Distribution, onlineDisks, bucket, object, opts.VersionID)
    		storageLogOnceIf(ctx, err, "get-object-file-info-manually-modified")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    	fi.Erasure.Index = j.ErasureIndex
    	fi.Erasure.BlockSize = j.ErasureBlockSize
    	fi.Erasure.DataBlocks = j.ErasureM
    	fi.Erasure.ParityBlocks = j.ErasureN
    	fi.Erasure.Distribution = make([]int, len(j.ErasureDist))
    	for i := range j.ErasureDist {
    		fi.Erasure.Distribution[i] = int(j.ErasureDist[i])
    	}
    	fi.DataDir = uuid.UUID(j.DataDir).String()
    
    	if st, ok := j.MetaSys[metaTierStatus]; ok {
    		fi.TransitionStatus = string(st)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In this case, `afterResolve` only executes when the `resolve` task runs.
    The `distributions` closure is a valid top-level script closure.
    But it is an invalid configure closure for a Configuration.
    This example creates the `conf` Configuration immediately.
    During `resolve` task execution, the `distributions` block executed as if it were declared at the script-level:
    
    ```groovy
    configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    // completely random distribution over the allocation timeline; this
    // corresponds to a Poisson process with parameter MemProfileRate. In Poisson
    // processes, the distance between two samples follows the exponential
    // distribution (exp(MemProfileRate)), so the best return value is a random
    // number taken from an exponential distribution whose mean is MemProfileRate.
    func nextSample() uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    The main convention is provided by the <<base_plugin.adoc#base_plugin,Base Plugin>>, which defaults to creating archives in the `layout.buildDirectory.dir("distributions")` directory and typically uses archive names of the form _[projectName]-[version].[type]_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller_test.go

    		endpointZoneInfo: map[string]topologycache.EndpointZoneInfo{
    			"ns/svc1": {zoneA: 1, zoneB: 2, zoneC: 3},
    		},
    		expectedQueueLen: 1,
    	}, {
    		name: "even zones, uneven endpoint distribution but within threshold, no sync required",
    		nodes: []nodeInfo{
    			{zoneLabel: &zoneB, ready: &readyTrue, cpu: &cpu2000},
    			{zoneLabel: &zoneB, ready: &readyTrue, cpu: &cpu2000},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    }
    
    // findgoversion determines the Go version to use in the version string.
    // It also parses any other metadata found in the version file.
    func findgoversion() string {
    	// The $GOROOT/VERSION file takes priority, for distributions
    	// without the source repo.
    	path := pathf("%s/VERSION", goroot)
    	if isfile(path) {
    		b := chomp(readfile(path))
    
    		// Starting in Go 1.21 the VERSION file starts with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel5.0:java_library_distribution_plugin]]
    === Java Library Distribution Plugin utilizes Java Library Plugin
    
    The <<java_library_distribution_plugin.adoc#java_library_distribution_plugin,Java Library Distribution Plugin>> is now based on the
    <<java_library_plugin.adoc#java_library_plugin, Java Library Plugin>> instead of the <<java_plugin.adoc#java_plugin, Java Plugin>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top