Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for Portal (0.12 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.json

                  "iqn": "iqnValue",
                  "lun": 3,
                  "iscsiInterface": "iscsiInterfaceValue",
                  "fsType": "fsTypeValue",
                  "readOnly": true,
                  "portals": [
                    "portalsValue"
                  ],
                  "chapAuthDiscovery": true,
                  "chapAuthSession": true,
                  "secretRef": {
                    "name": "nameValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json

                  "iqn": "iqnValue",
                  "lun": 3,
                  "iscsiInterface": "iscsiInterfaceValue",
                  "fsType": "fsTypeValue",
                  "readOnly": true,
                  "portals": [
                    "portalsValue"
                  ],
                  "chapAuthDiscovery": true,
                  "chapAuthSession": true,
                  "secretRef": {
                    "name": "nameValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_utils_test.go

    	testCases := []struct {
    		name        string
    		ownerRefs   []metav1.OwnerReference
    		policy      apps.StatefulSetPersistentVolumeClaimRetentionPolicy
    		shouldMatch bool
    	}{
    		{
    			name: "normal controller, pod",
    			ownerRefs: []metav1.OwnerReference{
    				{
    					Name:       "pod-1",
    					APIVersion: "v1",
    					Kind:       "Pod",
    					UID:        "pod-123",
    					Controller: ptr.To(true),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

                  "iqn": "iqnValue",
                  "lun": 3,
                  "iscsiInterface": "iscsiInterfaceValue",
                  "fsType": "fsTypeValue",
                  "readOnly": true,
                  "portals": [
                    "portalsValue"
                  ],
                  "chapAuthDiscovery": true,
                  "chapAuthSession": true,
                  "secretRef": {
                    "name": "nameValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

                  "iqn": "iqnValue",
                  "lun": 3,
                  "iscsiInterface": "iscsiInterfaceValue",
                  "fsType": "fsTypeValue",
                  "readOnly": true,
                  "portals": [
                    "portalsValue"
                  ],
                  "chapAuthDiscovery": true,
                  "chapAuthSession": true,
                  "secretRef": {
                    "name": "nameValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

         * List the contents of this SMB resource. The list returned by this
         * method will be;
         *
         * <ul>
         * <li>files and directories contained within this resource if the
         * resource is a normal disk file directory,
         * <li>all available NetBIOS workgroups or domains if this resource is
         * the top level URL <code>smb://</code>,
         * <li>all servers registered as members of a NetBIOS workgroup if this
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. src/go/types/expr.go

    			if !isNumeric(target) {
    				return nil, nil, InvalidUntypedConversion
    			}
    		case UntypedString:
    			// Non-constant untyped string values are not permitted by the spec and
    			// should not occur during normal typechecking passes, but this path is
    			// reachable via the AssignableTo API.
    			if !isString(target) {
    				return nil, nil, InvalidUntypedConversion
    			}
    		case UntypedNil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/testing/testing.go

    		}
    
    		// Check if the test panicked or Goexited inappropriately.
    		//
    		// If this happens in a normal test, print output but continue panicking.
    		// tRunner is called in its own goroutine, so this terminates the process.
    		//
    		// If this happens while fuzzing, recover from the panic and treat it like a
    		// normal failure. It's important that the process keeps running in order to
    		// find short inputs that cause panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    //  4. Create sandbox if necessary.
    //  5. Create ephemeral containers.
    //  6. Create init containers.
    //  7. Resize running containers (if InPlacePodVerticalScaling==true)
    //  8. Create normal containers.
    func (m *kubeGenericRuntimeManager) SyncPod(ctx context.Context, pod *v1.Pod, podStatus *kubecontainer.PodStatus, pullSecrets []v1.Secret, backOff *flowcontrol.Backoff) (result kubecontainer.PodSyncResult) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top