Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for scaleIO (0.13 sec)

  1. pkg/api/persistentvolume/util_test.go

    				},
    			},
    			expected: []string{
    				`spec.rbd: deprecated in v1.28, non-functional in v1.31+`},
    		},
    		{
    			name: "PV ScaleIO deprecation warning",
    			template: &api.PersistentVolume{
    				Spec: api.PersistentVolumeSpec{
    					PersistentVolumeSource: api.PersistentVolumeSource{
    						ScaleIO: &api.ScaleIOPersistentVolumeSource{
    							Gateway:          "",
    							System:           "",
    							SecretRef:        nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

            monitors:
            - monitorsValue
            pool: poolValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
          scaleIO:
            fsType: fsTypeValue
            gateway: gatewayValue
            protectionDomain: protectionDomainValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.yaml

        keyring: keyringValue
        monitors:
        - monitorsValue
        pool: poolValue
        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
        user: userValue
      scaleIO:
        fsType: fsTypeValue
        gateway: gatewayValue
        protectionDomain: protectionDomainValue
        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
        sslEnabled: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.yaml

            monitors:
            - monitorsValue
            pool: poolValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
          scaleIO:
            fsType: fsTypeValue
            gateway: gatewayValue
            protectionDomain: protectionDomainValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            monitors:
            - monitorsValue
            pool: poolValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
          scaleIO:
            fsType: fsTypeValue
            gateway: gatewayValue
            protectionDomain: protectionDomainValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    		}
    	}
    	return false
    }
    
    // Scale a measurement from a unit to a different unit and returns
    // the scaled value and the target unit. The returned target unit
    // will be empty if uninteresting (could be skipped).
    func Scale(value int64, fromUnit, toUnit string) (float64, string) {
    	// Avoid infinite recursion on overflow.
    	if value < 0 && -value > 0 {
    		v, u := Scale(-value, fromUnit, toUnit)
    		return -v, u
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top