Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for Requirements (0.48 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    	m := parentMeta(obj, nil)
    	m[constants.InternalRouteSemantics] = constants.RouteSemanticsGateway
    	return m
    }
    
    // sortHTTPRoutes sorts generated vs routes to meet gateway-api requirements
    // see https://gateway-api.sigs.k8s.io/v1alpha2/references/spec/#gateway.networking.k8s.io/v1alpha2.HTTPRouteRule
    func sortHTTPRoutes(routes []*istio.HTTPRoute) {
    	sort.SliceStable(routes, func(i, j int) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * nature of the read operations in Map. For example, no operation can reveal that the table
         * has grown but the threshold has not yet been updated, so there are no atomicity requirements
         * for this with respect to reads.
         *
         * As a guide, all critical volatile reads and writes to the count field are marked in code
         * comments.
         */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    var alignedBuf []byte
    
    func init() {
    	alignedBuf = disk.AlignedBlock(xioutil.DirectioAlignSize)
    	_, _ = rand.Read(alignedBuf)
    }
    
    // isValidVolname verifies a volname name in accordance with object
    // layer requirements.
    func isValidVolname(volname string) bool {
    	if len(volname) < 3 {
    		return false
    	}
    
    	if runtime.GOOS == "windows" {
    		// Volname shouldn't have reserved characters in Windows.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  4. pkg/apis/batch/validation/validation.go

    	// maximum number of rules in pod failure policy
    	maxPodFailurePolicyRules = 20
    
    	// maximum number of values for a OnExitCodes requirement in pod failure policy
    	maxPodFailurePolicyOnExitCodesValues = 255
    
    	// maximum number of patterns for a OnPodConditions requirement in pod failure policy
    	maxPodFailurePolicyOnPodConditionsPatterns = 20
    
    	// maximum length of the value of the managedBy field
    	maxManagedByLength = 63
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                                  ? -1
                                  : out_height_constant * out_width_constant;
    
        // Input rank should be 4. Might be able to drop this requirement entirely
        // as its an input requirement.
        if (!input_ty.hasRank() || input_ty.getRank() != 4) {
          return failure();
        }
    
        int64_t batch_cst = input_ty.getShape()[0];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // like s390x, so those were implemented using
    // macros to compute the equivalent values.
    
    // 3. The LVX, STVX instructions on ppc64 require
    // 16 byte alignment of the data.  To avoid that
    // requirement, data is loaded using LXVD2X and
    // STXVD2X with VPERM to reorder bytes correctly.
    
    // I have identified some areas where I believe
    // changes would be needed to make this work for big
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    									"name":  "dev",
    									"port":  8080,
    									"field": "value",
    								},
    							},
    						}}},
    				patchMyCRDV1Beta1Schema{
    					"Require even numbered port in key, remove maxItems requirement",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"field": map[string]interface{}{
    								"maxItems": nil,
    								"items": map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	// must also evenly divide pagesPerArena.
    	pagesPerReclaimerChunk = 512
    
    	// physPageAlignedStacks indicates whether stack allocations must be
    	// physical page aligned. This is a requirement for MAP_STACK on
    	// OpenBSD.
    	physPageAlignedStacks = GOOS == "openbsd"
    )
    
    // Main malloc heap.
    // The heap itself is the "free" and "scav" treaps,
    // but all the other global data is here too.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    	check.expr(nil, x, e.X)
    	if x.mode == invalid {
    		return
    	}
    
    	op := e.Op
    	switch op {
    	case token.AND:
    		// spec: "As an exception to the addressability
    		// requirement x may also be a composite literal."
    		if _, ok := ast.Unparen(e.X).(*ast.CompositeLit); !ok && x.mode != variable {
    			check.errorf(x, UnaddressableOperand, invalidOp+"cannot take address of %s", x)
    			x.mode = invalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. pkg/kubelet/nodestatus/setters_test.go

    			// the reason for this is unclear, so we may want to actually send an event, and change these test cases
    			// to ensure an event is sent.
    		},
    		{
    			desc: "new, ready: soft requirement warning",
    			node: withCapacity.DeepCopy(),
    			cmStatus: cm.Status{
    				SoftRequirements: fmt.Errorf("foo"),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top