Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for className (0.36 sec)

  1. src/main/java/org/codelibs/core/lang/ClassUtil.java

         *
         * @param className
         *            クラス名。{@literal null}や空文字列であってはいけません
         * @return FQCNからパッケージ名を除いた名前
         */
        public static String getShortClassName(final String className) {
            assertArgumentNotEmpty("className", className);
    
            final int i = className.lastIndexOf('.');
            if (i > 0) {
                return className.substring(i + 1);
            }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassGraph.kt

                ?: ""
    
        operator fun get(className: String) =
            classes.computeIfAbsent(className) {
                val outputClassName = if (unshadedPackages.matches(className)) className else shadowPackagePrefix + className
                ClassDetails(outputClassName).also { classDetails ->
                    if (keepPackages.matches(className) && !ignorePackages.matches(className)) {
                        entryPoints.add(classDetails)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pom.xml

    								return types -->
    							<className>**</className>
    							<differenceType>7006</differenceType>
    							<method>*</method>
    							<from>*</from>
    							<to>*</to>
    						</difference>
    						<difference>
    							<className>jcifs/Configuration</className>
    							<differenceType>7012</differenceType>
    							<method>boolean isSendNTLMTargetName()</method>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/FessLastaDocTest.java

                if (clazz.isInterface() || Modifier.isAbstract(clazz.getModifiers())) { // e.g. BaseAction
                    return;
                }
                final String className = clazz.getName();
                if (className.contains(appWebPkg) && className.endsWith(actionSuffix)) {
                    // ## Assert ##
                    markHere("exists");
                    getComponent(clazz); // expect no exception
                }
            });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/inheritance/AbstractProjectInheritanceTestCase.java

    /**
     */
    @Deprecated
    public abstract class AbstractProjectInheritanceTestCase extends AbstractMavenProjectTestCase {
        protected String getTestSeries() {
            String className = getClass().getPackage().getName();
    
            return className.substring(className.lastIndexOf('.') + 1);
        }
    
        protected File projectFile(String name) {
            return projectFile("maven", name);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/pointers/KtFe10DescFunctionLikeSymbolPointer.kt

            check(analysisSession is KaFe10Session)
            val analysisContext = analysisSession.analysisContext
    
            val className = callableId.className
            val memberScope = if (className != null) {
                val outerClassId = ClassId(callableId.packageName, className, isLocal = false)
                analysisContext.resolveSession.moduleDescriptor.findClassAcrossModuleDependencies(outerClassId)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/MoreObjects.java

       * #toStringHelper(Object)}, but using {@code className} instead of using an instance's {@link
       * Object#getClass()}.
       *
       * @param className the name of the instance type
       * @since 18.0 (since 7.0 as {@code Objects.toStringHelper()}).
       */
      public static ToStringHelper toStringHelper(String className) {
        return new ToStringHelper(className);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/MoreObjects.java

       * #toStringHelper(Object)}, but using {@code className} instead of using an instance's {@link
       * Object#getClass()}.
       *
       * @param className the name of the instance type
       * @since 18.0 (since 7.0 as {@code Objects.toStringHelper()}).
       */
      public static ToStringHelper toStringHelper(String className) {
        return new ToStringHelper(className);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

                }
                is KtClassOrObject -> {
                    className += current.name ?: return null
                }
            }
    
            current = current.getElementParentDeclaration()
        }
    
        return CallableId(
            packageName = containingFile.packageFqName,
            className = if (className.isNotEmpty()) FqName.fromSegments(className.asReversed()) else null,
            callableName = Name.identifier(selfName),
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/PluginStructureProvider.kt

                application,
                pluginRelativePath,
                classLoader,
                RawPluginDescriptor::appContainerDescriptor,
            ) { className, pluginDescriptor ->
                @Suppress("UNCHECKED_CAST")
                Class.forName(className, true, classLoader) as Class<Any>
            }
        }
    
        fun registerProjectServices(project: MockProject, pluginRelativePath: String) {
            registerServices(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top