Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for wabt (0.21 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    			want.Spec.ClusterIPs = want.Spec.ClusterIPs[0:1]
    		} else if len(got.Spec.ClusterIPs) > len(want.Spec.ClusterIPs) {
    			want.Spec.ClusterIPs = append(want.Spec.ClusterIPs, got.Spec.ClusterIPs[len(want.Spec.ClusterIPs):]...)
    		}
    		if tc.expectStackDowngrade && len(want.Spec.IPFamilies) > len(got.Spec.ClusterIPs) {
    			want.Spec.IPFamilies = want.Spec.IPFamilies[0:1]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    		// receive. However, this may allocate less than len(p).
    		want := int64(len(p))
    		if b.expected > want {
    			want = b.expected
    		}
    		chunk := b.lastChunkOrAlloc(want)
    		n := copy(chunk[b.w:], p)
    		p = p[n:]
    		b.w += n
    		b.size += n
    		b.expected -= int64(n)
    	}
    	return ntotal, nil
    }
    
    func (b *http2dataBuffer) lastChunkOrAlloc(want int64) []byte {
    	if len(b.chunks) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			warning:    pointer.StringPtr("Test message\xc5foo"),
    			want:       []string{"must only contain printable UTF-8 characters"},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := validateDeprecationWarning(tt.deprecated, tt.warning); !reflect.DeepEqual(got, tt.want) {
    				t.Errorf("validateDeprecationWarning() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - The `wait.Poll*` and `wait.ExponentialBackoff*` functions have been deprecated and will be removed in a future release.  Callers should switch to using `wait.PollUntilContextCancel`, `wait.PollUntilContextTimeout`, or `wait.ExponentialBackoffWithContext` as appropriate.
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"fsType":    "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. prow/config/calico.yaml

                    type: string
                  datastoreReady:
                    description: DatastoreReady is used during significant datastore migrations
                      to signal to components such as Felix that it should wait before
                      accessing the datastore.
                    type: boolean
                  variant:
                    description: Variant declares which variant of Calico should be active.
                    type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

    - Improved handling of jsonpath expressions for `kubectl wait --for`. It is now possible to use simple filter expressions which match on a field's content. ([#118748](https://github.com/kubernetes/kubernetes/pull/118748), [@andreaskaris](https://github.com/andreaskaris))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
      optional string volumeID = 1;
    
      // fsType is the filesystem type of the volume that you want to mount.
      // Tip: Ensure that the filesystem type is supported by the host operating system.
      // Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
      optional string volumeID = 1;
    
      // fsType is the filesystem type of the volume that you want to mount.
      // Tip: Ensure that the filesystem type is supported by the host operating system.
      // Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - The "value" part in the `wait --for=jsonpath='{expression}'[=value]` is now
      optional. If the value is not provided i.e., the command looks like `wait --for=jsonpath='{expression}'`
      then the wait condition is interpreted as matched when the expression returns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top