Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 125 for persistent (0.29 sec)

  1. api/openapi-spec/swagger.json

            },
            "status": {
              "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeStatus",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status.go

    // the API server, returning a boolean indicating whether the attempt was
    // successful.  If a node with the same name already exists, it reconciles the
    // value of the annotation for controller-managed attach-detach of attachable
    // persistent volumes for the node.
    func (kl *Kubelet) tryRegisterWithAPIServer(node *v1.Node) bool {
    	_, err := kl.kubeClient.CoreV1().Nodes().Create(context.TODO(), node, metav1.CreateOptions{})
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    			defaultCluster := cb.buildCluster(clusterKey.clusterName, discoveryType, lbEndpoints, model.TrafficDirectionOutbound, port, service, nil, "")
    			if defaultCluster == nil {
    				continue
    			}
    
    			// if the service uses persistent sessions, override status allows
    			// DRAINING endpoints to be kept as 'UNHEALTHY' coarse status in envoy.
    			// Will not be used for normal traffic, only when explicit override.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. src/runtime/chan.go

    		panic(plainError("makechan: size out of range"))
    	}
    
    	// Hchan does not contain pointers interesting for GC when elements stored in buf do not contain pointers.
    	// buf points into the same allocation, elemtype is persistent.
    	// SudoG's are referenced from their owning thread so they can't be collected.
    	// TODO(dvyukov,rlh): Rethink when collector can move allocated objects.
    	var c *hchan
    	switch {
    	case mem == 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    				FindReasons: volumebinding.ConflictReasons{volumebinding.ErrReasonBindConflict},
    			},
    			eventReason: "FailedScheduling",
    			expectError: makePredicateError("1 node(s) didn't find available persistent volumes to bind"),
    		},
    		{
    			name: "bound and unbound unsatisfied",
    			volumeBinderConfig: &volumebinding.FakeVolumeBinderConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. src/runtime/metrics_test.go

    	// we yield and go idle. That has a rare enough chance that retries should resolve it.
    	// If the issue we expect is happening, it should be persistent.
    	minIdleCPUSeconds := dur.Seconds() * (float64(runtime.GOMAXPROCS(-1)) - 0.5)
    
    	// Let's make sure there's no background scavenge work to do.
    	//
    	// The runtime.GC calls below ensure the background sweeper
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

          gcloud compute routes delete \
            --project "${NETWORK_PROJECT}" \
            --quiet \
            "${routes[@]::${batch}}"
          routes=( "${routes[@]:${batch}}" )
        done
    
        # Delete persistent disk for influx-db.
        if gcloud compute disks describe "${INSTANCE_PREFIX}"-influxdb-pd --zone "${ZONE}" --project "${PROJECT}" &>/dev/null; then
          gcloud compute disks delete \
            --project "${PROJECT}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	// storage encoder. Given a list of kinds the input object might belong
    	// to, the EncodeVersioner outputs the gvk the object will be
    	// converted to before persisted in etcd.
    	EncodeVersioner runtime.GroupVersioner
    	// Transformer allows the value to be transformed prior to persisting into etcd.
    	Transformer value.Transformer
    
    	// CompactionInterval is an interval of requesting compaction from apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K 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. src/net/http/transport_test.go

    	for ntries := 10; ntries > 0 && nfinal > nmax; ntries-- {
    		time.Sleep(50 * time.Millisecond)
    		runtime.GC()
    		nfinal = runtime.NumGoroutine()
    	}
    	return nfinal
    }
    
    // tests that persistent goroutine connections shut down when no longer desired.
    func TestTransportPersistConnLeak(t *testing.T) {
    	run(t, testTransportPersistConnLeak, testNotParallel)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top