Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for persistent (0.16 sec)

  1. .teamcity/test-buckets.json

    					"signing",
    					"ide-native",
    					"plugins-java-library",
    					"antlr",
    					"ide-plugins",
    					"platform-base",
    					"test-kit",
    					"ide",
    					"file-collections",
    					"persistent-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"kotlin-dsl-tooling-builders",
    					"execution-e2e-tests",
    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. src/runtime/malloc.go

    	}
    
    	mp := acquirem()
    	var persistent *persistentAlloc
    	if mp != nil && mp.p != 0 {
    		persistent = &mp.p.ptr().palloc
    	} else {
    		lock(&globalAlloc.mutex)
    		persistent = &globalAlloc.persistentAlloc
    	}
    	persistent.off = alignUp(persistent.off, align)
    	if persistent.off+size > persistentChunkSize || persistent.base == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter_test.go

    				volSrc := makeTestVol("pv1", testDriver)
    				volSrc.CSI.FSType = &fsType
    				return volume.NewSpecFromVolume(volSrc)
    			},
    		},
    		{
    			name:   "setup with persistent source",
    			podUID: types.UID(fmt.Sprintf("%08X", rand.Uint64())),
    			mode:   storage.VolumeLifecyclePersistent,
    			fsType: "zfs",
    			spec: func(fsType string, options []string) *volume.Spec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    		if err != nil {
    			return fmt.Errorf("persistent volume controller can't update finalizer: %v", err)
    		}
    		_, err = ctrl.storeVolumeUpdate(logger, volumeClone)
    		if err != nil {
    			return fmt.Errorf("persistent Volume Controller can't anneal migration finalizer: %v", err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    	// persistentVolumeClaimRetentionPolicy describes the lifecycle of persistent
    	// volume claims created from volumeClaimTemplates. By default, all persistent
    	// volume claims are created as needed and retained until manually deleted. This
    	// policy allows the lifecycle to be altered, for example by deleting persistent
    	// volume claims when their stateful set is deleted, or when their pod is scaled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    }
    
    func (t *Transport) maxIdleConnsPerHost() int {
    	if v := t.MaxIdleConnsPerHost; v != 0 {
    		return v
    	}
    	return DefaultMaxIdleConnsPerHost
    }
    
    // tryPutIdleConn adds pconn to the list of idle persistent connections awaiting
    // a new request.
    // If pconn is no longer needed or not in a good state, tryPutIdleConn returns
    // an error explaining why it wasn't registered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    		}
    		var onHeartbeatFailure func()
    		// Kubelet needs to be able to recover from stale http connections.
    		// HTTP2 has a mechanism to detect broken connections by sending periodical pings.
    		// HTTP1 only can have one persistent connection, and it will close all Idle connections
    		// once the Kubelet heartbeat fails. However, since there are many edge cases that we can't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. okhttp/api/okhttp.api

    	public static final fun parseAll (Lokhttp3/HttpUrl;Lokhttp3/Headers;)Ljava/util/List;
    	public final fun path ()Ljava/lang/String;
    	public final fun persistent ()Z
    	public final fun sameSite ()Ljava/lang/String;
    	public final fun secure ()Z
    	public fun toString ()Ljava/lang/String;
    	public final fun value ()Ljava/lang/String;
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    On the command line, add this to your Gradle invocation:
    
    [source,properties]
    ----
    -Djavax.xml.accessExternalDTD=http
    ----
    
    To make this workaround persistent, add the following line to your `gradle.properties`:
    
    [source,properties]
    ----
    systemProp.javax.xml.accessExternalDTD=http
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    func requireOpenAPISchema(oldCRDSpec *apiextensions.CustomResourceDefinitionSpec) bool {
    	if oldCRDSpec != nil && !allVersionsSpecifyOpenAPISchema(oldCRDSpec) {
    		// don't tighten validation on existing persisted data
    		return false
    	}
    	return true
    }
    func allVersionsSpecifyOpenAPISchema(spec *apiextensions.CustomResourceDefinitionSpec) bool {
    	if spec.Validation != nil && spec.Validation.OpenAPIV3Schema != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top