Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for const3 (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) entryNewValue2A(op ssa.Op, t *types.Type, aux ssa.Aux, arg0, arg1 *ssa.Value) *ssa.Value {
    	return s.entryBlock().NewValue2A(src.NoXPos, op, t, aux, arg0, arg1)
    }
    
    // const* routines add a new const value to the entry block.
    func (s *state) constSlice(t *types.Type) *ssa.Value {
    	return s.f.ConstSlice(t)
    }
    func (s *state) constInterface(t *types.Type) *ssa.Value {
    	return s.f.ConstInterface(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-56408`](https://youtrack.jetbrains.com/issue/KT-56408) Inconsistent rules of CFA in class initialization block between K1 and K2
    - [`KT-63580`](https://youtrack.jetbrains.com/issue/KT-63580) "AssertionError: access of const val: GET_FIELD" caused by const value and variable with delegation
    - [`KT-67993`](https://youtrack.jetbrains.com/issue/KT-67993) K2: PCLA Inference throws exception with local objects
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritePPC64.go

    	return false
    }
    func rewriteValuePPC64_OpConst16(v *Value) bool {
    	// match: (Const16 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt16(v.AuxInt)
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValuePPC64_OpConst32(v *Value) bool {
    	// match: (Const32 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	reflect "reflect"
    	sync "sync"
    )
    
    const (
    	// Verify that this generated code is sufficiently up-to-date.
    	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    	// Verify that runtime/protoimpl is sufficiently up-to-date.
    	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    )
    
    // Mode for the ingress controller.
    type IngressControllerMode int32
    
    const (
    	// Unspecified Istio ingress controller.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t  \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\", \"else\", \"for\", \"function\", \"if\",\n\t  \"import\", \"let\", \"loop\", \"package\", \"namespace\", \"return\".\nExamples:\n  - Rule accessing a property named \"namespace\": {\"rule\": \"self.__namespace__ > 0\"}\n  - Rule accessing...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
Back to top