Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isExternal (0.17 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

        override val isInline: Boolean get() = withValidityAssertion { firSymbol.isInline }
        override val isFun: Boolean get() = withValidityAssertion { firSymbol.isFun }
        override val isExternal: Boolean get() = withValidityAssertion { firSymbol.isExternal }
        override val isActual: Boolean get() = withValidityAssertion { firSymbol.isActual }
        override val isExpect: Boolean get() = withValidityAssertion { firSymbol.isExpect }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirFunctionSymbol.kt

        override val isTailRec: Boolean get() = withValidityAssertion { firSymbol.isTailRec }
        override val isOperator: Boolean get() = withValidityAssertion { firSymbol.isOperator }
        override val isExternal: Boolean get() = withValidityAssertion { firSymbol.isExternal }
        override val isInline: Boolean get() = withValidityAssertion { firSymbol.isInline }
        override val isExtension: Boolean get() = withValidityAssertion { firSymbol.isExtension }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    			}
    			if target.Is386() && target.IsExternal() && target.IsELF {
    				nExtReloc++ // need two ELF relocations on 386, see ../x86/asm.go:elfreloc1
    			}
    			fallthrough
    		case objabi.R_CALL, objabi.R_PCREL:
    			if target.IsExternal() && rs != 0 && rst == sym.SUNDEFEXT {
    				// pass through to the external linker.
    				nExtReloc++
    				o = 0
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

        override val isInline: Boolean get() = withValidityAssertion { false }
        override val isFun: Boolean get() = withValidityAssertion { false }
        override val isExternal: Boolean get() = withValidityAssertion { false }
        override val isActual: Boolean get() = withValidityAssertion { false }
        override val isExpect: Boolean get() = withValidityAssertion { false }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/deadcode.go

    		// so we make sure we're pulling in all outer symbols, and their sub
    		// symbols. This is not ideal, and these carrier/section symbols could
    		// be removed.
    		if d.ldr.IsExternal(symIdx) {
    			d.mark(d.ldr.OuterSym(symIdx), symIdx)
    			d.mark(d.ldr.SubSym(symIdx), symIdx)
    		}
    
    		if len(methods) != 0 {
    			if !isgotype {
    				panic("method found on non-type symbol")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      // of constructing the table is offset by the number of queries.
      SymbolTable symbol_table(module);
      for (auto function : module.getOps<FuncOp>()) {
        if (function.isExternal())
          return errors::FailedPrecondition("External functions not supported");
    
        if (function.getName() == entry_func_id &&
            !configs.export_entry_func_to_flib) {
          entry_func.emplace(function);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    	}
    
    	if kubeDeps == nil {
    		kubeDeps, err = UnsecuredDependencies(s, featureGate)
    		if err != nil {
    			return err
    		}
    	}
    
    	if kubeDeps.Cloud == nil {
    		if !cloudprovider.IsExternal(s.CloudProvider) {
    			cloudprovider.DeprecationWarningForProvider(s.CloudProvider)
    			cloud, err := cloudprovider.InitCloudProvider(s.CloudProvider, s.CloudConfigFile)
    			if err != nil {
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    		recorder:                       kubeDeps.Recorder,
    		cadvisor:                       kubeDeps.CAdvisorInterface,
    		cloud:                          kubeDeps.Cloud,
    		externalCloudProvider:          cloudprovider.IsExternal(cloudProvider),
    		providerID:                     providerID,
    		nodeRef:                        nodeRef,
    		nodeLabels:                     nodeLabels,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

                    if (parts != null) {
                        if (summary != null) comma()
                        property("parts") {
                            jsonObjectList(parts) { (isInternal, text) ->
                                property(if (isInternal) "internalText" else "text", text)
                            }
                        }
                    }
                }
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top