Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 354 for populator (0.11 sec)

  1. platforms/core-runtime/build-configuration/src/integTest/groovy/org/gradle/interal/buildconfiguration/tasks/UpdateDaemonJvmIntegrationTest.groovy

            when:
            run "updateDaemonJvm"
    
            then:
            assertJvmCriteria(Jvm.current().javaVersion)
            outputContains("Daemon JVM criteria is an incubating feature.")
        }
    
        def "When execute updateDaemonJvm for valid version Then build properties are populated with expected values"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api.go

    	return info.Types != nil || info.StoreTypesInSyntax
    }
    
    // TypeOf returns the type of expression e, or nil if not found.
    // Precondition 1: the Types map is populated or StoreTypesInSyntax is set.
    // Precondition 2: Uses and Defs maps are populated.
    func (info *Info) TypeOf(e syntax.Expr) Type {
    	if info.Types != nil {
    		if t, ok := info.Types[e]; ok {
    			return t.Type
    		}
    	} else if info.StoreTypesInSyntax {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    	RevokedCertificates []pkix.RevokedCertificate
    
    	// Number is used to populate the X.509 v2 cRLNumber extension in the CRL,
    	// which should be a monotonically increasing sequence number for a given
    	// CRL scope and CRL issuer. It is also populated from the cRLNumber
    	// extension when parsing a CRL.
    	Number *big.Int
    
    	// ThisUpdate is used to populate the thisUpdate field in the CRL, which
    	// indicates the issuance date of the CRL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. .gitignore

    docs/debugging/hash-set/hash-set
    docs/debugging/healing-bin/healing-bin
    docs/debugging/inspect/inspect
    docs/debugging/pprofgoparser/pprofgoparser
    docs/debugging/reorder-disks/reorder-disks
    docs/debugging/populate-hard-links/populate-hardlinks
    docs/debugging/xattr/xattr
    hash-set
    healing-bin
    inspect
    pprofgoparser
    reorder-disks
    s3-check-md5
    s3-verify
    xattr
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 802 bytes
    - Viewed (0)
  5. internal/config/identity/openid/jwt.go

    	pk.Lock()
    	defer pk.Unlock()
    
    	pk.pkMap[keyID] = key
    }
    
    func (pk *publicKeys) get(kid string) interface{} {
    	pk.RLock()
    	defer pk.RUnlock()
    	return pk.pkMap[kid]
    }
    
    // PopulatePublicKey - populates a new publickey from the JWKS URL.
    func (r *Config) PopulatePublicKey(arn arn.ARN) error {
    	pCfg := r.arnProviderCfgsMap[arn]
    	if pCfg.JWKS.URL == nil || pCfg.JWKS.URL.String() == "" {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 18:10:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/RunBuildDependenciesTaskBuilder.java

                .collect(Collectors.toMap(EclipseWorkspaceProject::getName, EclipseModelBuilder::isProjectOpen, (a, b) -> a || b));
    
            List<TaskDependency> buildDependencies = populate(project.getRootProject());
            if (!buildDependencies.isEmpty()) {
                Gradle rootGradle = getRootGradle(project.getGradle());
                Project rootProject = rootGradle.getRootProject();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty
    	// volume is desired. This may be any object from a non-empty API group (non
    	// core object) or a PersistentVolumeClaim object.
    	// When this field is specified, volume binding will only succeed if the type of
    	// the specified object matches some installed volume populator or dynamic
    	// provisioner.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconciler.go

    	// If underlying PVC was resized while in-use then this function also handles volume
    	// resizing.
    	rc.mountOrAttachVolumes()
    
    	// Unmount volumes only when DSW and ASW are fully populated to prevent unmounting a volume
    	// that is still needed, but it did not reach DSW yet.
    	if readyToUnmount {
    		// Ensure devices that should be detached/unmounted are detached/unmounted.
    		rc.unmountDetachDevices()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/go/types/api.go

    }
    
    func (info *Info) recordTypes() bool {
    	return info.Types != nil
    }
    
    // TypeOf returns the type of expression e, or nil if not found.
    // Precondition: the Types, Uses and Defs maps are populated.
    func (info *Info) TypeOf(e ast.Expr) Type {
    	if t, ok := info.Types[e]; ok {
    		return t.Type
    	}
    	if id, _ := e.(*ast.Ident); id != nil {
    		if obj := info.ObjectOf(id); obj != nil {
    			return obj.Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/unique/clone.go

    	}
    	var seq cloneSeq
    	switch typ.Kind() {
    	case abi.Struct:
    		buildStructCloneSeq(typ, &seq, 0)
    	case abi.Array:
    		buildArrayCloneSeq(typ, &seq, 0)
    	}
    	return seq
    }
    
    // buildStructCloneSeq populates a cloneSeq for an abi.Type that has Kind abi.Struct.
    func buildStructCloneSeq(typ *abi.Type, seq *cloneSeq, baseOffset uintptr) {
    	styp := typ.StructType()
    	for i := range styp.Fields {
    		f := &styp.Fields[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top