Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 542 for uvarint (0.19 sec)

  1. src/runtime/tracecpu.go

    		}
    
    		// Add the stack to the table.
    		stackID := trace.stackTab[gen%2].put(pcBuf[:nstk])
    
    		// Write out the CPU sample.
    		w.byte(byte(traceEvCPUSample))
    		w.varint(timestamp)
    		w.varint(mpid)
    		w.varint(ppid)
    		w.varint(goid)
    		w.varint(stackID)
    
    		trace.cpuBuf[gen%2] = w.traceBuf
    	}
    	return !eof
    }
    
    // traceCPUFlush flushes trace.cpuBuf[gen%2]. The caller must be certain that gen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Stdin bool `json:"stdin,omitempty" protobuf:"varint,1,opt,name=stdin"`
    
    	// Redirect the standard output stream of the pod for this call.
    	// +optional
    	Stdout bool `json:"stdout,omitempty" protobuf:"varint,2,opt,name=stdout"`
    
    	// Redirect the standard error stream of the pod for this call.
    	// +optional
    	Stderr bool `json:"stderr,omitempty" protobuf:"varint,3,opt,name=stderr"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    - `withVariant(name)`: modify a single variant identified by its name
    - `addVariant(name)` or `addVariant(name, base)`: add a new variant to the component either _from scratch_ or by _copying_ the details of an existing variant (base)
    
    The following details of each variant can be adjusted:
    
    - The <<variant_model.adoc#sec:abm_configuration_attributes,attributes>> that identify the variant — `attributes {}` block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

            javaLibrary.assertPublished()
            javaLibrary.parsedModuleMetadata.variant("apiElements") {
                dependency("org.test:foo:1.0") {
                    exists()
                }
                noMoreDependencies()
            }
            javaLibrary.parsedModuleMetadata.variant("runtimeElements") {
                dependency("org.test:foo:1.0") {
                    exists()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphSelectionCandidates.java

        /**
         * Returns the variant to use when attribute-based variant selection is not enabled.
         */
        @Nullable
        default VariantGraphResolveState getLegacyVariant(ResolutionFailureHandler failureHandler) {
            return getVariantByConfigurationName(Dependency.DEFAULT_CONFIGURATION, failureHandler);
        }
    
        /**
         * Returns the variant that is identified by the given configuration name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/coordination/v1/types.go

    	// to wait to force acquire it. This is measure against time of last
    	// observed renewTime.
    	// +optional
    	LeaseDurationSeconds *int32 `json:"leaseDurationSeconds,omitempty" protobuf:"varint,2,opt,name=leaseDurationSeconds"`
    	// acquireTime is a time when the current lease was acquired.
    	// +optional
    	AcquireTime *metav1.MicroTime `json:"acquireTime,omitempty" protobuf:"bytes,3,opt,name=acquireTime"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

        }
    
        static String testedVariant() {
            def variant
            if (GradleMetadataResolveRunner.gradleMetadataPublished) {
                variant = 'api'
            } else {
                if (GradleMetadataResolveRunner.useIvy()) {
                    variant = 'default'
                } else {
                    variant = 'compile'
                }
            }
            variant
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1/types.go

    	DisruptionsAllowed int32 `json:"disruptionsAllowed" protobuf:"varint,3,opt,name=disruptionsAllowed"`
    
    	// current number of healthy pods
    	CurrentHealthy int32 `json:"currentHealthy" protobuf:"varint,4,opt,name=currentHealthy"`
    
    	// minimum desired number of healthy pods
    	DesiredHealthy int32 `json:"desiredHealthy" protobuf:"varint,5,opt,name=desiredHealthy"`
    
    	// total number of pods counted by this disruption budget
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadataSerializationHelper.java

            for (ComponentVariant variant : variants) {
                builder.add(new AbstractRealisedModuleComponentResolveMetadata.ImmutableRealisedVariantImpl(resolveMetadata.getId(), variant.getName(), variant.getAttributes().asImmutable(), variant.getDependencies(), variant.getDependencyConstraints(),
                    variant.getFiles(), variant.getCapabilities(), variantToDependencies.get(variant.getName()), variant.isExternalVariant()));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    }
    
    // testName returns the dist test name for a given package and variant.
    func testName(pkg, variant string) string {
    	name := pkg
    	if variant != "" {
    		name += ":" + variant
    	}
    	return name
    }
    
    // goTest represents all options to a "go test" command. The final command will
    // combine configuration from goTest and tester flags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top