Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for BHelper (0.15 sec)

  1. pkg/apis/core/validation/validation.go

    	allErrs := validateResourceName(value, fldPath)
    
    	if len(strings.Split(string(value), "/")) == 1 {
    		if !helper.IsStandardContainerResourceName(value) {
    			return append(allErrs, field.Invalid(fldPath, value, "must be a standard resource for containers"))
    		}
    	} else if !helper.IsNativeResource(value) {
    		if !helper.IsExtendedResourceName(value) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage_test.go

    type testingTInterface interface {
    	Helper()
    	Errorf(format string, args ...interface{})
    }
    
    type fakeTestingT struct {
    	t *testing.T
    }
    
    func (f fakeTestingT) Helper() {}
    
    func (f fakeTestingT) Errorf(format string, args ...interface{}) {}
    
    func verifyEquiv(t testingTInterface, call string, tc *svcTestCase, got *api.Service) bool {
    	t.Helper()
    
    	// For when we compare objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // dynamic shape aware and uses broadcasting modes that CHLO does not support.
    // Applies static binary broadcasting to a binary elementwise op.
    // This is a legacy helper to provide general broadcasting support in legacy,
    // static shaped code that relies on non-left-padded broadcasting semantics.
    template <typename BinaryOp>
    static Value StaticBinaryBroadcast(Location loc, Value x, Value y,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - Made `kubectl-convert` binary linking static (also affects the deb and rpm packages). ([#114228](https://github.com/kubernetes/kubernetes/pull/114228), [@saschagrunert](https://github.com/saschagrunert))
    - Migrated controller helper functions to use contextual logging. ([#115049](https://github.com/kubernetes/kubernetes/pull/115049), [@fatsheep9146](https://github.com/fatsheep9146))
    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. CHANGELOG/CHANGELOG-1.29.md

    - Added `kubectl node drain` helper callbacks `OnPodDeletionOrEvictionStarted`
      and `OnPodDeletionOrEvictionFailed`; people extending `kubectl` can use these
      new callbacks for more granularity. Deprecated the `OnPodDeletedOrEvicted`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	"sync/atomic"
    	"time"
    
    	"golang.org/x/net/http/httpguts"
    	"golang.org/x/net/http2/hpack"
    	"golang.org/x/net/idna"
    )
    
    // The HTTP protocols are defined in terms of ASCII, not Unicode. This file
    // contains helper functions which may use Unicode-aware functions which would
    // otherwise be unsafe and could introduce vulnerabilities if used improperly.
    
    // asciiEqualFold is strings.EqualFold, ASCII only. It reports whether s and t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    				} else if !strings.HasPrefix(err.Error(), tc.error) {
    					t.Errorf("got wrong error: %v (expected %q)", err, tc.error)
    				}
    			}
    		})
    	}
    }
    
    // orderByCommentServiceName is a helper function that orders two IPTables rules
    // based on the service name in their comment. (If either rule has no comment then the
    // return value is undefined.)
    func orderByCommentServiceName(rule1, rule2 *iptablestest.Rule) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	// garbage collector only sees initialized values when it
    	// looks for pointers.
    	var lo, hi int64
    
    	// Opaque state for backend to use. Current backends use it to
    	// keep track of which helper registers have been zeroed.
    	var state uint32
    
    	// Iterate through declarations. Autos are sorted in decreasing
    	// frame offset order.
    	for _, n := range e.curfn.Dcl {
    		if !n.Needzero() {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    * Fix charms leaving services running after remove-unit ([#48446](https://github.com/kubernetes/kubernetes/pull/48446), [@Cynerva](https://github.com/Cynerva))
    * Added helper funcs to schedulercache.Resource. ([#46926](https://github.com/kubernetes/kubernetes/pull/46926), [@k82cn](https://github.com/k82cn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top