Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 279 for persistent (0.2 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/controller/volume/persistentvolume/metrics/metrics.go

    	// String to use when plugin name cannot be determined
    	pluginNameNotAvailable = "N/A"
    )
    
    var registerMetrics sync.Once
    
    // PVLister used to list persistent volumes.
    type PVLister interface {
    	List() []interface{}
    }
    
    // PVCLister used to list persistent volume claims.
    type PVCLister interface {
    	List() []interface{}
    }
    
    // Register all metrics for pv controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 13:09:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/volume/iscsi/iscsi_test.go

    	plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(t, tmpDir, client, nil))
    	plug, _ := plugMgr.FindPluginByName(iscsiPluginName)
    
    	// readOnly bool is supplied by persistent-claim volume source when its mounter creates other volumes
    	spec := volume.NewSpecFromPersistentVolume(pv, true)
    	pod := &v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: types.UID("poduid")}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_test.go

    				// This *must* fail because a CSIDriver.Spec.VolumeLifecycleModes entry "persistent"
    				// is required when a driver object is available.
    				if err == nil {
    					t.Fatalf("csiTest.VolumeAll volPlugin.NewMounter should have failed for persistent volume due to lack of support for persistent volumes, got: %+v, %s", mounter, err)
    				}
    				return
    			}
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
Back to top