Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,062 for leastOf (0.14 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    	"verbs":        "`verbs`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/mergelocals_test.go

    	}
    
    	// Expect at least one clump of at least 3.
    	n3 := 0
    	got := []int{}
    	for _, v := range varsAtFrameOffset {
    		if v > 2 {
    			n3++
    		}
    		got = append(got, v)
    	}
    	sort.Ints(got)
    	if n3 == 0 {
    		t.Logf("%s\n", string(out))
    		t.Fatalf("expected at least one clump of 3, got: %+v", got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/text/template/helper.go

    	return t
    }
    
    // ParseFiles creates a new [Template] and parses the template definitions from
    // the named files. The returned template's name will have the base name and
    // parsed contents of the first file. There must be at least one file.
    // If an error occurs, parsing stops and the returned *Template is nil.
    //
    // When parsing multiple files with the same name in different directories,
    // the last one mentioned will be the one that results.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/c/kernels.h

    // in `vals` and `lengths`, each of which must point to an array of length at
    // least `max_values`. *status is set to TF_OK. The elements of values will
    // point to addresses in `storage` which must be at least `storage_size` bytes
    // in length. Ideally, max_values would be set to list_size and `storage` would
    // be at least total_size, obtained from
    // TF_OpKernelConstruction_GetAttrSize(ctx, attr_name, list_size,
    // total_size).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. pkg/apis/rbac/validation/validation.go

    	}
    
    	if len(rule.APIGroups) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("apiGroups"), "resource rules must supply at least one api group"))
    	}
    	if len(rule.Resources) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("resources"), "resource rules must supply at least one resource"))
    	}
    	return allErrs
    }
    
    func ValidateRoleBinding(roleBinding *rbac.RoleBinding) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:48:21 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  6. cmd/metrics-v3-bucket-replication.go

    		"Total number of bytes failed at least once to replicate in the last hour on a bucket",
    		bucketL)
    	bucketReplLastHrFailedCountMD = NewGaugeMD(bucketReplLastHrFailedCount,
    		"Total number of objects which failed replication in the last hour on a bucket",
    		bucketL)
    	bucketReplLastMinFailedBytesMD = NewGaugeMD(bucketReplLastMinFailedBytes,
    		"Total number of bytes failed at least once to replicate in the last full minute on a bucket",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testsanitizers/empty_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // All of the actual test files have limited build constraints. This file
    // ensures there's at least one test file on every platform.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 19:43:56 UTC 2023
    - 320 bytes
    - Viewed (0)
  8. src/go/types/gcsizes.go

    	// of alignment of the elements and fields, respectively.
    	switch t := under(T).(type) {
    	case *Array:
    		// spec: "For a variable x of array type: unsafe.Alignof(x)
    		// is the same as unsafe.Alignof(x[0]), but at least 1."
    		return s.Alignof(t.elem)
    	case *Struct:
    		if len(t.fields) == 0 && _IsSyncAtomicAlign64(T) {
    			// Special case: sync/atomic.align64 is an
    			// empty struct we recognize as a signal that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. pkg/kube/version.go

    package kube
    
    import (
    	"fmt"
    	"strconv"
    
    	"k8s.io/apimachinery/pkg/util/version"
    	kubeVersion "k8s.io/apimachinery/pkg/version"
    )
    
    // IsAtLeastVersion returns true if the client is at least the specified version.
    // For example, on Kubernetes v1.15.2, IsAtLeastVersion(13) == true, IsAtLeastVersion(17) == false
    func IsAtLeastVersion(client Client, minorVersion uint) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. pkg/volume/testing/testing.go

    		actualCallCount := attacher.GetAttachCallCount()
    		if actualCallCount != 0 {
    			return fmt.Errorf(
    				"At least one attacher has non-zero AttachCallCount: <%v>.",
    				actualCallCount)
    		}
    	}
    
    	return nil
    }
    
    // VerifyWaitForAttachCallCount ensures that at least one of the Mounters for
    // this plugin has the expectedWaitForAttachCallCount number of calls. Otherwise
    // it returns an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top