Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for const2 (1.72 sec)

  1. api/go1.16.txt

    pkg io/fs, const ModeIrregular = 524288
    pkg io/fs, const ModeIrregular FileMode
    pkg io/fs, const ModeNamedPipe = 33554432
    pkg io/fs, const ModeNamedPipe FileMode
    pkg io/fs, const ModePerm = 511
    pkg io/fs, const ModePerm FileMode
    pkg io/fs, const ModeSetgid = 4194304
    pkg io/fs, const ModeSetgid FileMode
    pkg io/fs, const ModeSetuid = 8388608
    pkg io/fs, const ModeSetuid FileMode
    pkg io/fs, const ModeSocket = 16777216
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %6 = "tf.Const"() {value = dense<2> : tensor<1xi32>} : () -> tensor<1xi32>
      %7 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      %8 = "tf.Const"() {value = dense<2> : tensor<i32>} : () -> tensor<i32>
      %9 = "tf.Const"() {value = dense<[]> : tensor<0xi32>} : () -> tensor<0xi32>
      %10 = "tf.Const"() {value = dense<0> : tensor<i64>} : () -> tensor<i64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %feature_group_count = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      %lhs_dilation = "tf.Const"() {value = dense<[4, 1, 1]> : tensor<3xi32>} : () -> tensor<3xi32>
      %rhs_dilation = "tf.Const"() {value = dense<1> : tensor<3xi32>} : () -> tensor<3xi32>
      %padding = "tf.Const"() {value = dense<0> : tensor<3x2xi32>} : () -> tensor<3x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    // This may only be set for init containers and only allowed value is "Always".
    type ContainerRestartPolicy string
    
    const (
    	ContainerRestartPolicyAlways ContainerRestartPolicy = "Always"
    )
    
    // DNSPolicy defines how a pod's DNS will be configured.
    // +enum
    type DNSPolicy string
    
    const (
    	// DNSClusterFirstWithHostNet indicates that the pod should use cluster DNS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. doc/go_spec.html

    constant, even if the literal's fractional part is zero.
    </p>
    
    <pre>
    const Pi float64 = 3.14159265358979323846
    const zero = 0.0         // untyped floating-point constant
    const (
    	size int64 = 1024
    	eof        = -1  // untyped integer constant
    )
    const a, b, c = 3, 4, "foo"  // a = 3, b = 4, c = "foo", untyped integer and string constants
    const u, v float32 = 0, 3    // u = 0.0, v = 3.0
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  6. src/net/http/h2_bundle.go

    		f.n = sum
    		return true
    	}
    	return false
    }
    
    const http2frameHeaderLen = 9
    
    var http2padZeros = make([]byte, 255) // zeros for padding
    
    // A FrameType is a registered frame type as defined in
    // https://httpwg.org/specs/rfc7540.html#rfc.section.11.2
    type http2FrameType uint8
    
    const (
    	http2FrameData         http2FrameType = 0x0
    	http2FrameHeaders      http2FrameType = 0x1
    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. src/cmd/compile/internal/ssa/rewrite386.go

    		return true
    	}
    }
    func rewriteValue386_OpConst16(v *Value) bool {
    	// match: (Const16 [c])
    	// result: (MOVLconst [int32(c)])
    	for {
    		c := auxIntToInt16(v.AuxInt)
    		v.reset(Op386MOVLconst)
    		v.AuxInt = int32ToAuxInt(int32(c))
    		return true
    	}
    }
    func rewriteValue386_OpConst8(v *Value) bool {
    	// match: (Const8 [c])
    	// result: (MOVLconst [int32(c)])
    	for {
    		c := auxIntToInt8(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %0 = "tfl.squeeze"(%arg0) : (tensor<1x1x2xf32>) -> tensor<2xf32>
      func.return %0 : tensor<2xf32>
    
      // CHECK-DAG: [[CONST:.*]] = arith.constant dense<2> : tensor<1xi32>
      // CHECK: %[[RESULT:.*]] = "tfl.reshape"(%arg0, %[[CONST:.*]]) : (tensor<1x1x2xf32>, tensor<1xi32>) -> tensor<2xf32>
      // CHECK: return %[[RESULT]]
    }
    
    // CHECK-LABEL: expandDimsToReshape
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	"k8s.io/kubernetes/pkg/fieldpath"
    	netutils "k8s.io/utils/net"
    )
    
    const isNegativeErrorMsg string = apimachineryvalidation.IsNegativeErrorMsg
    const isInvalidQuotaResource string = `must be a standard resource for quota`
    const fieldImmutableErrorMsg string = apimachineryvalidation.FieldImmutableErrorMsg
    const isNotIntegerErrorMsg string = `must be an integer`
    const isNotPositiveErrorMsg string = `must be greater than zero`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    // Non-cluster IPs:     203.0.113.0/24
    // LB Source Range:     203.0.113.0/25
    
    const testHostname = "test-hostname"
    const testNodeIP = "192.168.0.2"
    const testNodeIPAlt = "192.168.1.2"
    const testExternalIP = "192.168.99.11"
    const testNodeIPv6 = "2001:db8::1"
    const testNodeIPv6Alt = "2001:db8:1::2"
    const testExternalClient = "203.0.113.2"
    const testExternalClientBlocked = "203.0.113.130"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top