Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for is_inner (0.12 sec)

  1. pkg/scheduler/framework/extender.go

    	// Bind delegates the action of binding a pod to a node to the extender.
    	Bind(binding *v1.Binding) error
    
    	// IsBinder returns whether this extender is configured for the Bind method.
    	IsBinder() bool
    
    	// IsInterested returns true if at least one extended resource requested by
    	// this pod is managed by this extender.
    	IsInterested(pod *v1.Pod) bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. .idea/uiDesigner.xml

              <preferred-size width="200" height="200" />
            </default-constraints>
          </item>
          <item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
            <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
          </item>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Oct 24 15:06:04 UTC 2013
    - 9.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtClassLikeSymbol.kt

    public abstract class KaNamedClassOrObjectSymbol : KaClassOrObjectSymbol(),
        KaSymbolWithModality,
        KaSymbolWithVisibility,
        KaNamedSymbol,
        KaContextReceiversOwner {
    
        public abstract val isInner: Boolean
        public abstract val isData: Boolean
        public abstract val isInline: Boolean
        public abstract val isFun: Boolean
    
        public abstract val isExternal: Boolean
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtRendererOtherModifiersProvider.kt

                        if (symbol.isInline) add(KtTokens.INLINE_KEYWORD)
                        if (symbol.isData) add(KtTokens.DATA_KEYWORD)
                        if (symbol.isFun) add(KtTokens.FUN_KEYWORD)
                        if (symbol.isInner) add(KtTokens.INNER_KEYWORD)
                    }
    
                    if (symbol is KaTypeParameterSymbol) {
                        if (symbol.isReified) add(KtTokens.REIFIED_KEYWORD)
                        when (symbol.variance) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/runtime/cgocheck.go

    	// that look like they are non-Go memory.
    	if gp.m.mallocing != 0 {
    		return
    	}
    
    	// If the object is pinned, it's safe to store it in C memory. The GC
    	// ensures it will not be moved or freed.
    	if isPinned(src) {
    		return
    	}
    
    	// It's OK if writing to memory allocated by persistentalloc.
    	// Do this check last because it is more expensive and rarely true.
    	// If it is false the expense doesn't matter since we are crashing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. pkg/scheduler/extender.go

    		return err
    	}
    	if result.Error != "" {
    		return fmt.Errorf(result.Error)
    	}
    	return nil
    }
    
    // IsBinder returns whether this extender is configured for the Bind method.
    func (h *HTTPExtender) IsBinder() bool {
    	return h.bindVerb != ""
    }
    
    // IsPrioritizer returns whether this extender is configured for the Prioritize method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10ScopeResolution.kt

        override fun getClassifierSymbols(nameFilter: KaScopeNameFilter): Sequence<KaClassifierSymbol> =
            super.getClassifierSymbols(nameFilter).filter { it is KaNamedClassOrObjectSymbol && it.isInner }
    
        override fun getCallableSymbols(nameFilter: KaScopeNameFilter): Sequence<KaCallableSymbol> = withValidityAssertion {
            super.getCallableSymbols(nameFilter).filter { symbol ->
                when (symbol) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/runtime/cgocall.go

    		if !cgoIsGoPointer(p) {
    			return
    		}
    		if !top && !isPinned(p) {
    			panic(errorString(msg))
    		}
    		cgoCheckArg(it, p, it.Kind_&abi.KindDirectIface == 0, false, msg)
    	case abi.Slice:
    		st := (*slicetype)(unsafe.Pointer(t))
    		s := (*slice)(p)
    		p = s.array
    		if p == nil || !cgoIsGoPointer(p) {
    			return
    		}
    		if !top && !isPinned(p) {
    			panic(errorString(msg))
    		}
    		if !st.Elem.Pointers() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiNamedClassOrObjectSymbol.kt

        override val descriptor: ClassDescriptor? by cached {
            val bindingContext = analysisContext.analyze(psi, AnalysisMode.PARTIAL)
            bindingContext[BindingContext.CLASS, psi]
        }
    
        override val isInner: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.INNER_KEYWORD) }
    
        override val isData: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.DATA_KEYWORD) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

        override val modality: Modality
            get() = withValidityAssertion { javaClass.modality }
    
        override val visibility: Visibility
            get() = withValidityAssertion { javaClass.visibility }
    
        override val isInner: Boolean
            get() = withValidityAssertion { classId.outerClassId != null && !javaClass.isStatic }
    
        val outerClass: KaFirPsiJavaClassSymbol?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top