Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for Method (0.34 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolDeclarationOverridesProvider.kt

            return subClassDescriptor.getSuperClassOrAny() == superClassDescriptor
        }
    
        override fun getIntersectionOverriddenSymbols(symbol: KaCallableSymbol): Collection<KaCallableSymbol> {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public void ClassMap(Class); Class getCachedClass(); public reflect.Method findMethod(String, Object[]) throws MethodMap$AmbiguousException; private void populateMethodCache(); private String makeMethodKey(reflect.Method); private static String makeMethodKey(String, Object[]); private static reflect.Method[] getAccessibleMethods(Class); private static int getAccessibleMethods(Class, ClassMap$MethodInfo[], int); public static reflect.Method getPublicMethod(reflect.Method); private static reflect.Method...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtPsiTypeProvider.kt

    public interface KaPsiTypeProviderMixIn : KaSessionMixIn {
        /**
         * Converts the given [KaType] to [PsiType] under [useSitePosition] context.
         *
         * Note: [PsiType] is JVM conception, so this method will return `null` for non-JVM platforms.
         *
         * @receiver type to convert
         *
         * @param useSitePosition is used to determine if the given [KaType] needs to be approximated.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            this.projectMap = projectMap;
        }
    
        /** This is a provisional method and may be removed */
        public List<MavenProject> getAllProjects() {
            return allProjects;
        }
    
        /** This is a provisional method and may be removed */
        public void setAllProjects(List<MavenProject> allProjects) {
            this.allProjects = allProjects;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java

        }
    
        /**
         * Constructs a new {@code MojoExecutionException} wrapping an underlying {@code Throwable}.
         *
         * @param cause the cause which is saved for later retrieval by the {@link #getCause()} method.
         *              A {@code null} value is permitted, and indicates that the cause is nonexistent or unknown.
         */
        public MojoException(Throwable cause) {
            super(cause);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                        logger.warn("Could not persist build resumption data", e);
                    }
                });
            }
        }
    
        /**
         * Nobody should ever use this method.
         *
         * @deprecated If you use this method and your code is not in Maven Core, stop doing this.
         */
        @Deprecated
        public RepositorySystemSession newRepositorySession(MavenExecutionRequest request) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPropertySetterSymbol.kt

        override val annotations by cached {
            KaFirAnnotationListForDeclaration.create(firSymbol, builder)
        }
    
        /**
         * Returns [CallableId] of the delegated Java method if the corresponding property of this setter is a synthetic Java property.
         * Otherwise, returns `null`
         */
        override val callableId: CallableId? by cached {
            val fir = firSymbol.fir
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenSimpleLogger.java

            printStackTrace(t, stream, prefix);
        }
    
        protected String getLocation(final StackTraceElement e) {
            assert e != null;
    
            if (e.isNativeMethod()) {
                return "Native Method";
            } else if (e.getFileName() == null) {
                return "Unknown Source";
            } else if (e.getLineNumber() >= 0) {
                return e.getFileName() + ":" + e.getLineNumber();
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         */
        // blech! this isn't even intelligible as a method name. provided for
        // consistency...
        public boolean isOnlineRequired() {
            return onlineRequired;
        }
    
        /**
         * @return <code>true</code> if the Mojo is online, <code>false</code> otherwise.
         */
        // more english-friendly method...keep the code clean! :)
        public boolean requiresOnline() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileActivator.java

         */
        boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems);
    
        /**
         * Determines whether specified activation method is present in configuration or not. It should help to have AND
         * between activation conditions
         * Need for solving https://issues.apache.org/jira/browse/MNG-4565
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top