Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for INT32 (0.12 sec)

  1. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      format: int32
                                      type: integer
                                    http2MaxRequests:
                                      description: Maximum number of active requests to
                                        a destination.
                                      format: int32
                                      type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  2. manifests/charts/base/crds/crd-all.gen.yaml

                                      format: int32
                                      type: integer
                                    http2MaxRequests:
                                      description: Maximum number of active requests to
                                        a destination.
                                      format: int32
                                      type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// result: (MOVDconst [int64(uint32(int32(c)/int32(d)))])
    	for {
    		if v_0.Op != OpARM64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		if v_1.Op != OpARM64MOVDconst {
    			break
    		}
    		d := auxIntToInt64(v_1.AuxInt)
    		if !(d != 0) {
    			break
    		}
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(uint32(int32(c) / int32(d))))
    		return true
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                      format: int32
                                      type: integer
                                    http2MaxRequests:
                                      description: Maximum number of active requests to
                                        a destination.
                                      format: int32
                                      type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// cond: x.Op != OpConst16 && sdivisibleOK16(c) && !hasSmallRotate(config)
    	// result: (Eq32 (Mod32 <typ.Int32> (SignExt16to32 <typ.Int32> x) (Const32 <typ.Int32> [int32(c)])) (Const32 <typ.Int32> [0]))
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpMod16 {
    				continue
    			}
    			_ = v_0.Args[1]
    			x := v_0.Args[0]
    			v_0_1 := v_0.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    `[a b c d a b c d]`.
    
    >>> a = tf.constant([[1,2,3],[4,5,6]], tf.int32)
    >>> b = tf.constant([1,2], tf.int32)
    >>> tf.tile(a, b)
    <tf.Tensor: shape=(2, 6), dtype=int32, numpy=
    array([[1, 2, 3, 1, 2, 3],
           [4, 5, 6, 4, 5, 6]], dtype=int32)>
    >>> c = tf.constant([2,1], tf.int32)
    >>> tf.tile(a, c)
    <tf.Tensor: shape=(4, 3), dtype=int32, numpy=
    array([[1, 2, 3],
           [4, 5, 6],
           [1, 2, 3],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	// match: (Const16 [c])
    	// result: (MOVLconst [int32(c)])
    	for {
    		c := auxIntToInt16(v.AuxInt)
    		v.reset(OpAMD64MOVLconst)
    		v.AuxInt = int32ToAuxInt(int32(c))
    		return true
    	}
    }
    func rewriteValueAMD64_OpConst8(v *Value) bool {
    	// match: (Const8 [c])
    	// result: (MOVLconst [int32(c)])
    	for {
    		c := auxIntToInt8(v.AuxInt)
    		v.reset(OpAMD64MOVLconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "revisionHistoryLimit": {
                "description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
                "format": "int32",
                "type": "integer"
              },
              "selector": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    		}
    	}
    }
    
    func TestValidateReplicationControllerStatus(t *testing.T) {
    	tests := []struct {
    		name string
    
    		replicas             int32
    		fullyLabeledReplicas int32
    		readyReplicas        int32
    		availableReplicas    int32
    		observedGeneration   int64
    
    		expectedErr bool
    	}{{
    		name:                 "valid status",
    		replicas:             3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                the Route MUST be considered detached from the Gateway.
    
    
                                Support: Extended
                              format: int32
                              maximum: 65535
                              minimum: 1
                              type: integer
                            sectionName:
                              description: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
Back to top