Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 425 for Rparen (0.07 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

            val parent = parent
            return when {
                parent is KtParameter && parent.ownerFunction != null && parent.typeReference === this ->
                    parent.resolveToFirSymbolOfTypeSafe<FirValueParameterSymbol>(firResolveSession, FirResolvePhase.TYPES)?.fir?.returnTypeRef
    
                parent is KtCallableDeclaration && (parent is KtNamedFunction || parent is KtProperty)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/api/services/model/InheritanceAssembler.java

        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
         *            <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ExpressionTypeProvider.kt

        }
    
        private fun getContainingCallExpression(argument: KtValueArgument): KtCallExpression? {
            return when (val parent = argument.parent) {
                is KtCallExpression -> parent
                is KtValueArgumentList -> parent.parent as? KtCallExpression
                else -> null
            }
        }
    
        override fun isDefinitelyNull(expression: KtExpression): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. src/internal/trace/summary_test.go

    		}
    
    		// Check parent.
    		if want.parent != nil {
    			if summary.Parent == nil {
    				t.Errorf("expected parent %d for task %d without a parent", *want.parent, id)
    			} else if summary.Parent.ID != *want.parent {
    				t.Errorf("bad parent for task %d: want %d, got %d", id, *want.parent, summary.Parent.ID)
    			}
    		} else if summary.Parent != nil {
    			t.Errorf("unexpected parent %d for task %d", summary.Parent.ID, id)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

            }
    
            public <T> T[] toArray(final T[] a) {
                return parent.toArray(a);
            }
    
            public boolean add(final E e) {
                return parent.add(e);
            }
    
            public boolean remove(final Object o) {
                return parent.remove(o);
            }
    
            public boolean containsAll(final Collection<?> c) {
                return parent.containsAll(c);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IncrementalChangesContext.java

            ValidationFinishedContext parent,
            ImmutableList<String> rebuildReasons,
            @Nullable ExecutionStateChanges executionStateChanges
        ) {
            super(parent);
            this.rebuildReasons = rebuildReasons;
            this.executionStateChanges = executionStateChanges;
        }
    
        protected IncrementalChangesContext(IncrementalChangesContext parent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/progress/DefaultProgressLoggerFactory.java

            return init(loggerClass.toString(), parent);
        }
    
        private ProgressLogger init(
            String loggerCategory,
            @Nullable ProgressLogger parentOperation
        ) {
            if (parentOperation != null && !(parentOperation instanceof ProgressLoggerImpl)) {
                throw new IllegalArgumentException("Unexpected parent logger.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderFactory.java

         *
         * @param parent the parent ClassLoader
         * @param spec the filtering spec for the classloader
         * @return The ClassLoader
         */
        ClassLoader createFilteringClassLoader(ClassLoader parent, FilteringClassLoader.Spec spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

        val parent = nonContainerParent
        return when {
            parent is R && check(parent, this) -> parent
            parent is KtQualifiedExpression && parent.selectorExpression == this -> {
                val grandParent = parent.nonContainerParent
                when {
                    grandParent is R && check(grandParent, parent) -> grandParent
                    else -> null
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    					vmin = parent.NewValue0I(parent.Pos, OpConst64, parent.Func.Config.Types.Int64, min)
    					vmax = parent.NewValue0I(parent.Pos, OpConst64, parent.Func.Config.Types.Int64, max)
    
    				case 4:
    					min = int64(int32(w.AuxInt) - int32(delta))
    					max = int64(int32(^uint32(0)>>1) - int32(delta))
    
    					vmin = parent.NewValue0I(parent.Pos, OpConst32, parent.Func.Config.Types.Int32, min)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top