Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 138 for base_ (0.11 sec)

  1. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

            ],
            "type": "object"
          },
          "io.k8s.api.admissionregistration.v1alpha1.MatchResources": {
            "description": "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)",
            "properties": {
              "excludeResourceRules": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/server/dynamiccertificates"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/pointer"
    )
    
    // utilities for loading JOSE keys.
    
    func loadRSAKey(t *testing.T, filepath string, alg jose.SignatureAlgorithm) *jose.JSONWebKey {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      for (auto s : s0.getValues<APInt>()) s0_shape.push_back(s.getSExtValue());
      for (auto s : s1.getValues<APInt>()) s1_shape.push_back(s.getSExtValue());
    
      return true;
    }
    
    // Calculates r0 & r1 output based on inputs and calculated broadcasted shape.
    //
    // For given bcasted_shape, s0_shape and s1_shape, the broadcasted dimension is
    // calculated and push back to its corresponding result, r0 or r1. For example,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/popper.min.js.map

    pper, getReferenceNode(reference));\n\n  // Handle viewport case\n  if (boundariesElement === 'viewport' ) {\n    boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition);\n  }\n\n  else {\n    // Handle other cases based on DOM element used as boundaries\n    let boundariesNode;\n    if (boundariesElement === 'scrollParent') {\n      boundariesNode = getScrollParent(getParentNode(reference));\n      if (boundariesNode.nodeName === 'BODY') {\n        boundariesNode...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

            ],
            "type": "object"
          },
          "io.k8s.api.admissionregistration.v1beta1.MatchResources": {
            "description": "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)",
            "properties": {
              "excludeResourceRules": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    		// to scan our stack, in which case, any stack shrinking will
    		// have already completed by the time we exit.
    		//
    		// N.B. The execution tracer is not aware of this status
    		// transition and handles it specially based on the
    		// wait reason.
    		casGToWaitingForGC(gp, _Grunning, waitReasonStoppingTheWorld)
    		stopTheWorldContext = stopTheWorldWithSema(reason) // avoid write to stack
    		casgstatus(gp, _Gwaiting, _Grunning)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation_test.go

    	// Include the test library, which includes the test() function in the storage environment during test
    	base := environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), strictCost)
    	extended, err := base.Extend(environment.VersionedOptions{
    		IntroducedVersion: version.MustParseGeneric("1.999"),
    		EnvOptions:        []cel.EnvOption{library.Test()},
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (OffPtr [off] ptr:(SP)) && is32Bit(off) => (MOVDaddr [int32(off)] ptr)
    (OffPtr [off] ptr) => (ADDconst [off] ptr)
    
    (Addr {sym} base) => (MOVDaddr {sym} base)
    (LocalAddr <t> {sym} base mem) && t.Elem().HasPointers() => (MOVDaddr {sym} (SPanchored base mem))
    (LocalAddr <t> {sym} base _)  && !t.Elem().HasPointers() => (MOVDaddr {sym} base)
    
    // loads
    (Load <t> ptr mem) && t.IsBoolean() => (MOVBUload ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	for _, file := range gofiles {
    		fi, err := fsys.Stat(file)
    		if err != nil {
    			base.Fatalf("%s", err)
    		}
    		if fi.IsDir() {
    			base.Fatalf("%s is a directory, should be a Go file", file)
    		}
    		dir1 := filepath.Dir(file)
    		if dir == "" {
    			dir = dir1
    		} else if dir != dir1 {
    			base.Fatalf("named files must all be in one directory; have %s and %s", dir, dir1)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    	return len(dAtA) - i, nil
    }
    
    func encodeVarintGenerated(dAtA []byte, offset int, v uint64) int {
    	offset -= sovGenerated(v)
    	base := offset
    	for v >= 1<<7 {
    		dAtA[offset] = uint8(v&0x7f | 0x80)
    		v >>= 7
    		offset++
    	}
    	dAtA[offset] = uint8(v)
    	return base
    }
    func (m *ControllerRevision) Size() (n int) {
    	if m == nil {
    		return 0
    	}
    	var l int
    	_ = l
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top