Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for persistent (0.14 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. docs/bucket/notifications/README.md

    MINIO_NOTIFY_AMQP_DELIVERY_MODE  (number)    set to '1' for non-persistent or '2' for persistent queue
    MINIO_NOTIFY_AMQP_QUEUE_DIR      (path)      staging dir for undelivered messages e.g. '/home/events'
    MINIO_NOTIFY_AMQP_QUEUE_LIMIT    (number)    maximum limit for undelivered messages, defaults to '100000'
    MINIO_NOTIFY_AMQP_COMMENT        (sentence)  optionally add a comment to this setting
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputContains("Providing metadata for group:projectB:1.1")
    
            when:
            // stop the daemon to make sure that when we run the build again
            // it's fetched from the persistent cache
            run '--stop'
            supplierInteractions.refresh('group:projectB:2.2', 'group:projectB:1.1')
            run 'checkDeps'
    
            then: "processing of the rule is cached"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pilot/pkg/networking/core/httproute_test.go

    			nil,
    		},
    		{
    			"session filter with header",
    			[]*model.Service{
    				buildHTTPServiceWithLabels("test-service.default.svc.cluster.local", visibility.Public, "", "default",
    					map[string]string{"istio.io/persistent-session-header": "x-session-header"}, 80),
    			},
    			[]config.Config{{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.VirtualService,
    					Name:             "acme",
    				},
    				Spec: virtualServiceSpec,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top