Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for persistent (0.4 sec)

  1. okhttp/src/main/kotlin/okhttp3/Cookie.kt

      )
      fun value(): String = value
    
      @JvmName("-deprecated_persistent")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "persistent"),
        level = DeprecationLevel.ERROR,
      )
      fun persistent(): Boolean = persistent
    
      @JvmName("-deprecated_expiresAt")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "expiresAt"),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. pkg/volume/plugins.go

    	// TODO: refactor all of this out of volumes when an admin can configure
    	// many kinds of provisioners.
    
    	// Reclamation policy for a persistent volume
    	PersistentVolumeReclaimPolicy v1.PersistentVolumeReclaimPolicy
    	// Mount options for a persistent volume
    	MountOptions []string
    	// Suggested PV.Name of the PersistentVolume to provision.
    	// This is a generated name guaranteed to be unique in Kubernetes cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  3. src/os/exec.go

    		handle: handle,
    	}
    	p.state.Store(1) // 1 persistent reference
    	runtime.SetFinalizer(p, (*Process).Release)
    	return p
    }
    
    func newDoneProcess(pid int) *Process {
    	p := &Process{
    		Pid:  pid,
    		mode: modeHandle,
    		// N.B Since we set statusDone, handle will never actually be
    		// used, so its value doesn't matter.
    	}
    	p.state.Store(uint64(statusDone)) // No persistent reference, as there is no handle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. pilot/pkg/features/experimental.go

    		"PILOT_ENABLE_PERSISTENT_SESSION_FILTER",
    		false,
    		"If enabled, Istiod sets up persistent session filter for listeners, if services have 'PILOT_PERSISTENT_SESSION_LABEL' set.",
    	).Get()
    
    	PersistentSessionLabel = env.Register(
    		"PILOT_PERSISTENT_SESSION_LABEL",
    		"istio.io/persistent-session",
    		"If not empty, services with this label will use cookie based persistent sessions",
    	).Get()
    
    	PersistentSessionHeaderLabel = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/grpcgen_test.go

    			t.Fatal("Failed to receive endpoint", err)
    		}
    		ep := adscConn.GetEndpoints()[clusterName]
    		if ep == nil {
    			t.Fatal("Endpoints not found for persistent session cluster")
    		}
    		if len(ep.GetEndpoints()) == 0 {
    			t.Fatal("No endpoint not found for persistent session cluster")
    		}
    		lbep1 := ep.GetEndpoints()[0]
    		if lbep1.LbEndpoints[0].HealthStatus.Number() != 3 {
    			t.Fatal("Draining status not included")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_plugin_test.go

    	}{
    		{
    			name:      "construct spec1 from original persistent spec",
    			specVolID: "test.vol.id",
    			volHandle: "testvol-handle1",
    
    			originSpec: volume.NewSpecFromPersistentVolume(makeTestPV("test.vol.id", 20, testDriver, "testvol-handle1"), true),
    			podUID:     types.UID(fmt.Sprintf("%08X", rand.Uint64())),
    		},
    		{
    			name:       "construct spec2 from original persistent spec",
    			specVolID:  "spec2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar.go

    	} else if c.MaxAge > 0 {
    		e.Expires = now.Add(time.Duration(c.MaxAge) * time.Second)
    		e.Persistent = true
    	} else {
    		if c.Expires.IsZero() {
    			e.Expires = endOfTime
    			e.Persistent = false
    		} else {
    			if !c.Expires.After(now) {
    				return e, true, nil
    			}
    			e.Expires = c.Expires
    			e.Persistent = true
    		}
    	}
    
    	e.Value = c.Value
    	e.Quoted = c.Quoted
    	e.Secure = c.Secure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. subprojects/core/build.gradle.kts

        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":normalization-java"))
        api(project(":persistent-cache"))
        api(project(":problems-api"))
        api(project(":process-services"))
        api(project(":resources"))
        api(project(":snapshots"))
        api(project(":worker-main"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. helm/minio/README.md

    ```bash
    helm install --name my-release --set persistence.size=1Ti minio/minio
    ```
    
    The above command deploys MinIO server with a 1Ti backing persistent volume.
    
    Alternately, you can provide a YAML file that specifies parameter values while installing the chart. For example,
    
    ```bash
    helm install --name my-release -f values.yaml minio/minio
    ```
    
    ### Persistence
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	defer ctrl.eventBroadcaster.Shutdown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting persistent volume controller")
    	defer logger.Info("Shutting down persistent volume controller")
    
    	if !cache.WaitForNamedCacheSync("persistent volume", ctx.Done(), ctrl.volumeListerSynced, ctrl.claimListerSynced, ctrl.classListerSynced, ctrl.podListerSynced, ctrl.NodeListerSynced) {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top