Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 277 for Builtin (0.14 sec)

  1. src/cmd/compile/internal/types2/universe.go

    		def(NewConst(nopos, nil, c.name, Typ[c.kind], c.val))
    	}
    }
    
    func defPredeclaredNil() {
    	def(&Nil{object{name: "nil", typ: Typ[UntypedNil], color_: black}})
    }
    
    // A builtinId is the id of a builtin function.
    type builtinId int
    
    const (
    	// universe scope
    	_Append builtinId = iota
    	_Cap
    	_Clear
    	_Close
    	_Complex
    	_Copy
    	_Delete
    	_Imag
    	_Len
    	_Make
    	_Max
    	_Min
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/go/types/universe.go

    		def(NewConst(nopos, nil, c.name, Typ[c.kind], c.val))
    	}
    }
    
    func defPredeclaredNil() {
    	def(&Nil{object{name: "nil", typ: Typ[UntypedNil], color_: black}})
    }
    
    // A builtinId is the id of a builtin function.
    type builtinId int
    
    const (
    	// universe scope
    	_Append builtinId = iota
    	_Cap
    	_Clear
    	_Close
    	_Complex
    	_Copy
    	_Delete
    	_Imag
    	_Len
    	_Make
    	_Max
    	_Min
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtFunctionLikeSymbol.kt

         */
        public abstract val isTailRec: Boolean
        public abstract val contractEffects: List<KaContractEffectDeclaration>
    
        /**
         * Whether this symbol is the `invoke` method defined on the Kotlin builtin functional type.
         */
        public abstract val isBuiltinFunctionInvoke: Boolean
    
        abstract override fun createPointer(): KaSymbolPointer<KaFunctionSymbol>
    }
    
    public typealias KtFunctionSymbol = KaFunctionSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback_canonicalization.mlir

    // RUN: tf-tfrt-opt %s -pass-pipeline='builtin.module(func.func(canonicalize))' | FileCheck %s
    
    // CHECK-LABEL: func @test_const_tensor_canonicalization_single_denst_tensor_operand
    func.func @test_const_tensor_canonicalization_single_denst_tensor_operand() -> !tfrt_fallback.tf_tensor {
      // CHECK: tfrt_fallback_async.const_dense_tensor
      %a = corert.const_dense_tensor dense<[true, false]> : tensor<2xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    \r?\n\2/,lookbehind:!0,greedy:!0,inside:b},{pattern:/(["'])(?:\\[\s\S]|\$\([^)]+\)|`[^`]+`|(?!\1)[^\\])*\1/,greedy:!0,inside:b}],variable:b.variable,'function':{pattern:/(^|[\s;|&])(?:alias|apropos|apt-get|aptitude|aspell|awk|basename|bash|bc|bg|builtin|bzip2|cal|cat|cd|cfdisk|chgrp|chmod|chown|chroot|chkconfig|cksum|clear|cmp|comm|command|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|du|egrep|eject|enable|env|ethtool|eval|exec|expand|expe...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/pkg.go

    		}
    		return p
    	}
    
    	p := new(Pkg)
    	p.Path = path
    	p.Name = name
    	if path == "go.shape" {
    		// Don't escape "go.shape", since it's not needed (it's a builtin
    		// package), and we don't want escape codes showing up in shape type
    		// names, which also appear in names of function/method
    		// instantiations.
    		p.Prefix = path
    	} else {
    		p.Prefix = objabi.PathToPrefix(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:28:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/basic.mlir

    // RUN: tf-tfrt-opt -pass-pipeline='builtin.module(func.func(tf-tensor-device-copy),tfrt-lower-tf-savedmodel{hoist-invariant-ops=true},tf-to-tfrt{tfrt-cost-threshold=1024 tfrt-merge-inter-dependent-streams=true})' %s | FileCheck %s --dump-input-filter=all
    
    // CHECK-NOT: tf_saved_model.semantics
    // CHECK: tfrt.cost_threshold = 1024
    // CHECK-SAME: tfrt.merge_inter_dependent_streams = true
    module attributes {tf_saved_model.semantics} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/call.go

    			check.errorf(call.ArgList[n-1], WrongArgCount, "too many arguments in conversion to %s", T)
    		}
    		x.expr = call
    		return conversion
    
    	case builtin:
    		// no need to check for non-genericity here
    		id := x.id
    		if !check.builtin(x, call, id) {
    			x.mode = invalid
    		}
    		x.expr = call
    		// a non-constant result implies a function call
    		if x.mode != invalid && x.mode != constant_ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/universe.go

    	StringSize = RoundUp(SliceLenOffset+int64(PtrSize), int64(PtrSize))
    
    	for et := Kind(0); et < NTYPE; et++ {
    		SimType[et] = et
    	}
    
    	Types[TANY] = newType(TANY) // note: an old placeholder type, NOT the new builtin 'any' alias for interface{}
    	Types[TINTER] = NewInterface(nil)
    	CheckSize(Types[TINTER])
    
    	defBasic := func(kind Kind, pkg *Pkg, name string) *Type {
    		typ := newType(kind)
    		obj := defTypeName(pkg.Lookup(name), typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/decls4.go

    type (
    	W0 /* ERROR "invalid recursive type" */ = W1
    	W1 = (W2)
    	W2 = ((W0))
    )
    
    func (W0) m() {} // no error expected (due to above cycle error)
    func (W1) n() {}
    
    // alias receiver types (invalid due to builtin underlying type)
    type (
    	B0 = B1
    	B1 = B2
    	B2 = int
    )
    
    func (B0 /* ERRORx "cannot define new methods on non-local type (int|B)" */ ) m() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top