Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for persistent (0.38 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "photonPersistentDisk": {
              "$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
              "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
            },
            "portworxVolume": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

        return
      fi
      device_info=$(ls -l /dev/disk/by-id/google-master-pd)
      relative_path=${device_info##* }
      MASTER_PD_DEVICE="/dev/disk/by-id/${relative_path}"
    }
    
    # Mounts a persistent disk (formatting if needed) to store the persistent data
    # on the master -- etcd's data, a few settings, and security certs/keys/tokens.
    # safe-format-and-mount only formats an unformatted disk, and mkdir -p will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/apis/apps/validation/validation_test.go

    			ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    			Spec: apps.ReplicaSetSpec{
    				Selector: &metav1.LabelSelector{MatchLabels: validLabels},
    			},
    		},
    		"read-write persistent disk with > 1 pod": {
    			ObjectMeta: metav1.ObjectMeta{Name: "abc"},
    			Spec: apps.ReplicaSetSpec{
    				Replicas: 2,
    				Selector: &metav1.LabelSelector{MatchLabels: validLabels},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    			Name:     "http",
    			Protocol: "HTTP",
    			Port:     80,
    		}},
    		Attributes: pilot_model.ServiceAttributes{
    			Namespace: "default",
    			Labels:    map[string]string{"istio.io/persistent-session": "session-cookie"},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			cfgs := tt.gateways
    			cfgs = append(cfgs, tt.virtualServices...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. 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)
  8. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion": {
            "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.",
            "properties": {
              "apiServerID": {
                "description": "The ID of the reporting API server.",
                "type": "string"
              },
              "decodableVersions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    // with submission of new work, and either one part or another needs to unpark
    // another worker thread. If they both fail to do that, we can end up with
    // semi-persistent CPU underutilization.
    //
    // The general pattern for submission is:
    // 1. Submit work to the local or global run queue, timer heap, or GC state.
    // 2. #StoreLoad-style memory barrier.
    // 3. Check sched.nmspinning.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top