Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for type_ (0.09 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        """Return single type or a tuple of types if more than one type."""
        types_ = anno.getanno(node, anno.Static.TYPES, None)
        if not types_:
          print('WARN: no Static.TYPES annotation. Fix the type inference pass: ')
          self.debug_print(node)
          return default
    
        if len(types_) == 1:
          type_, = types_
        else:
          type_ = types_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    				// and they must be at the end of the parameter list, otherwise
    				// the types would have been filled in by the right-to-left sweep
    				// above and we wouldn't have an error. Since we are in a type
    				// parameter list, the missing types are constraints.
    				if named == typed {
    					errPos = end // position error at closing ]
    					msg = "missing type constraint"
    				} else {
    					msg = "missing type parameter name"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/asm0.go

    	o1 := uint32(0)
    	o2 := uint32(0)
    	o3 := uint32(0)
    	o4 := uint32(0)
    
    	add := AADDU
    
    	if c.ctxt.Arch.Family == sys.MIPS64 {
    		add = AADDVU
    	}
    	switch o.type_ {
    	default:
    		c.ctxt.Diag("unknown type %d %v", o.type_)
    		prasm(p)
    
    	case 0: /* pseudo ops */
    		break
    
    	case 1: /* mov r1,r2 ==> OR r1,r0,r2 */
    		a := AOR
    		if p.As == AMOVW && c.ctxt.Arch.Family == sys.MIPS64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    	o1 := uint32(0)
    	o2 := uint32(0)
    	o3 := uint32(0)
    	o4 := uint32(0)
    	o5 := uint32(0)
    
    	add := AADDU
    	add = AADDVU
    
    	switch o.type_ {
    	default:
    		c.ctxt.Diag("unknown type %d %v", o.type_)
    		prasm(p)
    
    	case 0: // pseudo ops
    		break
    
    	case 1: // mov r1,r2 ==> OR r1,r0,r2
    		a := AOR
    		if p.As == AMOVW {
    			a = ASLL
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/asm5.go

    	o3 := uint32(0)
    	o4 := uint32(0)
    	o5 := uint32(0)
    	o6 := uint32(0)
    	if false { /*debug['P']*/
    		fmt.Printf("%x: %v\ttype %d\n", uint32(p.Pc), p, o.type_)
    	}
    	switch o.type_ {
    	default:
    		c.ctxt.Diag("%v: unknown asm %d", p, o.type_)
    
    	case 0: /* pseudo ops */
    		if false { /*debug['G']*/
    			fmt.Printf("%x: %s: arm\n", uint32(p.Pc), p.From.Sym.Name)
    		}
    
    	case 1: /* op R,[R],R */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    			if esr == 0 {
    				ldr.Errorf(s, "reloc %d (%s) to non-elf symbol %s (outer=%s) %d (%s)", r.Type(), sym.RelocName(ctxt.Arch, r.Type()), ldr.SymName(r.Sym()), ldr.SymName(rr.Xsym), ldr.SymType(r.Sym()), ldr.SymType(r.Sym()).String())
    			}
    			if !ldr.AttrReachable(rr.Xsym) {
    				ldr.Errorf(s, "unreachable reloc %d (%s) target %v", r.Type(), sym.RelocName(ctxt.Arch, r.Type()), ldr.SymName(rr.Xsym))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    // necessary to perform the update for the indicated strategy.
    type StatefulSetUpdateStrategy struct {
    	// Type indicates the type of the StatefulSetUpdateStrategy.
    	// Default is RollingUpdate.
    	// +optional
    	Type StatefulSetUpdateStrategyType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type,casttype=StatefulSetStrategyType"`
    	// RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition `json:"conditions,omitempty" protobuf:"bytes,3,rep,name=conditions"`
    }
    
    // ValidatingAdmissionPolicyConditionType is the condition type of admission validation policy.
    type ValidatingAdmissionPolicyConditionType string
    
    // TypeChecking contains results of type checking the expressions in the
    // ValidatingAdmissionPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition `json:"conditions,omitempty" protobuf:"bytes,3,rep,name=conditions"`
    }
    
    // ValidatingAdmissionPolicyConditionType is the condition type of admission validation policy.
    type ValidatingAdmissionPolicyConditionType string
    
    // TypeChecking contains results of type checking the expressions in the
    // ValidatingAdmissionPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // necessary to perform the update for the indicated strategy.
    type DaemonSetUpdateStrategy struct {
    	// Type of daemon set update. Can be "RollingUpdate" or "OnDelete".
    	// Default is OnDelete.
    	// +optional
    	Type DaemonSetUpdateStrategyType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type"`
    
    	// Rolling update config params. Present only if type = "RollingUpdate".
    	//---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top