Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,076 for isOnline (0.64 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescPropertyGetterSymbol.kt

        override val isDefault: Boolean
            get() = withValidityAssertion { descriptor.isDefault }
    
        override val isInline: Boolean
            get() = withValidityAssertion { descriptor.isInline }
    
        override val isOverride: Boolean
            get() = withValidityAssertion { descriptor.isExplicitOverride }
    
        override val hasBody: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    	if f == nil {
    		return ""
    	}
    	fn := f.raw()
    	if fn.isInlined() { // inlined version
    		fi := (*funcinl)(unsafe.Pointer(fn))
    		return funcNameForPrint(fi.name)
    	}
    	return funcNameForPrint(funcname(f.funcInfo()))
    }
    
    // Entry returns the entry address of the function.
    func (f *Func) Entry() uintptr {
    	fn := f.raw()
    	if fn.isInlined() { // inlined version
    		fi := (*funcinl)(unsafe.Pointer(fn))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. test/closure3.dir/main.go

    		}
    	}
    
    	{
    		a := 2
    		if r := func(x int) int { // ERROR "can inline main.func28"
    			b := 3
    			return func(y int) int { // ERROR "can inline main.func28.1" "can inline main.main.func28.func35"
    				c := 5
    				func(z int) { // ERROR "can inline main.func28.1.1" "can inline main.func28.main.func28.1.2" "can inline main.main.func28.func35.1" "can inline main.main.func28.main.main.func28.func35.func37"
    					a = a * x
    					b = b * y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:29 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/constants.h

    inline constexpr char kSavedModelLegacyInitOpKey[] = "legacy_init_op";
    
    /// SavedModel main op collection key. Used in v1 SavedModels.
    inline constexpr char kSavedModelMainOpKey[] = "saved_model_main_op";
    
    // CollectionDef key for the SavedModel train op.
    // Not exported while export_all_saved_models is experimental.
    inline constexpr char kSavedModelTrainOpKey[] = "saved_model_train_op";
    
    // Schema version for SavedModel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 23:02:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. test/newinline.go

    	return func() int { return 42 }() // ERROR "can inline p.func1" "inlining call to p.func1"
    }
    
    func q(x int) int { // ERROR "can inline q"
    	foo := func() int { return x * 2 } // ERROR "can inline q.func1" "func literal does not escape"
    	return foo()                       // ERROR "inlining call to q.func1"
    }
    
    func r(z int) int { // ERROR "can inline r"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtRendererOtherModifiersProvider.kt

                    if (symbol is KaFunctionSymbol) {
                        if (symbol.isExternal) add(KtTokens.EXTERNAL_KEYWORD)
                        if (symbol.isOverride) add(KtTokens.OVERRIDE_KEYWORD)
                        if (symbol.isInline) add(KtTokens.INLINE_KEYWORD)
                        if (symbol.isInfix) add(KtTokens.INFIX_KEYWORD)
                        if (symbol.isOperator) add(KtTokens.OPERATOR_KEYWORD)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/pgo/inline/inline_hot.pprof.node_map

    GO PREPROFILE V1
    example.com/pgo/inline.A
    example.com/pgo/inline.(*BS).NS
    7 129
    example.com/pgo/inline.(*BS).NS
    example.com/pgo/inline.T
    8 3
    example.com/pgo/inline.(*BS).NS
    example.com/pgo/inline.T
    13 2
    example.com/pgo/inline.benchmarkB
    example.com/pgo/inline.A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 267 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    inline const char kMlirPh1BridgeCounterV1[] = "v1";
    inline const char kMlirPh1BridgeCounterV2[] = "v2";
    inline const char kMlirPh1BridgeCounterTpu[] = "tpu";
    inline const char kMlirPh1BridgeCounterNonTpu[] = "cpu/gpu";
    inline const char kXlaOutsideCompilation[] = "_xla_outside_compilation";
    
    // Copies attributes that satisfy the given predicate from `from` to `to`.
    template <typename Predicate>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. test/escape4.go

    	f = func() { // ERROR "func literal escapes to heap" "can inline f1.func2"
    		p = alloc(3) // ERROR "inlining call to alloc" "moved to heap: x"
    	}
    	f()
    }
    
    func f2() {} // ERROR "can inline f2"
    
    // No inline for recover; panic now allowed to inline.
    func f3() { panic(1) } // ERROR "can inline f3" "1 escapes to heap"
    func f4() { recover() }
    
    func f5() *byte { // ERROR "can inline f5"
    	type T struct {
    		x [1]byte
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 19:43:26 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/generate/generate_test.go

    	if !reflect.DeepEqual(got, expected) {
    		t.Errorf("split(%q): got %q expected %q", inLine, got, expected)
    	}
    
    	// Try another undefined variable as an extra check
    	os.Unsetenv("_Z")
    	inLine = "//go:generate -command CMD1 \"ab${_Z}cd\""
    	expected = []string{"-command", "CMD1", "abcd"}
    	got = g.split(inLine + "\n")
    
    	if !reflect.DeepEqual(got, expected) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top