Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for const3 (0.12 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. api/go1.13.txt

    pkg log/syslog (netbsd-arm64), const LOG_ERR Priority
    pkg log/syslog (netbsd-arm64), const LOG_FTP = 88
    pkg log/syslog (netbsd-arm64), const LOG_FTP Priority
    pkg log/syslog (netbsd-arm64), const LOG_INFO = 6
    pkg log/syslog (netbsd-arm64), const LOG_INFO Priority
    pkg log/syslog (netbsd-arm64), const LOG_KERN = 0
    pkg log/syslog (netbsd-arm64), const LOG_KERN Priority
    pkg log/syslog (netbsd-arm64), const LOG_LOCAL0 = 128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  3. 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)
  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. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	{0x0ff0f000, 0x03700000, 4, CMN_EQ, 0x1c04, instArgs{arg_R_16, arg_const}},                                    // CMN<c> <Rn>,#<const> cond:4|0|0|1|1|0|1|1|1|Rn:4|(0)|(0)|(0)|(0)|imm12:12
    	{0x0ff00000, 0x03700000, 3, CMN_EQ, 0x1c04, instArgs{arg_R_16, arg_const}},                                    // CMN<c> <Rn>,#<const> cond:4|0|0|1|1|0|1|1|1|Rn:4|(0)|(0)|(0)|(0)|imm12:12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  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. 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)
  9. 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)
  10. 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)
Back to top