Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 141 for padding (0.5 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .longOpt("ignore-transitive-repositories")
                    .desc("If set, Maven will ignore remote repositories introduced by transitive dependencies.")
                    .build());
    
            // Adding this back to make Maven fail if used
            options.addOption(Option.builder("llr")
                    .longOpt("legacy-local-repository")
                    .desc("UNSUPPORTED: Use of this option will make Maven invocation fail.")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

      <artifactId>coreit</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-3839</name>
      <description>
        Test that POM parsing properly coalesces text data.
      </description>
    
      <properties>
        <!--
        This checks the coalescing of CHARACTERS and CDATA events. Note that inner whitespace must be retained.
        -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

        public List<ElevateWord> getElevateWordList(final ElevateWordPager elevateWordPager) {
    
            final PagingResultBean<ElevateWord> elevateWordList = elevateWordBhv.selectPage(cb -> {
                cb.paging(elevateWordPager.getPageSize(), elevateWordPager.getCurrentPageNumber());
                setupListCondition(cb, elevateWordPager);
            });
    
            // update pager
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

        override fun isUsedAsExpression(expression: KtExpression): Boolean =
            isUsed(expression)
    
        /**
         * [isUsed] and [doesParentUseChild] are defined in mutual recursion,
         * climbing up the syntax tree, passing control back and forth between the
         * two.
         *
         * Whether an expression is used is defined by the context in which it
         * appears. E.g. a "statement" in a block is considered used if it is the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                            "Making this build non-interactive, because the environment variable CI equals \"true\"."
                                    + " Disable this detection by removing that variable or adding --force-interactive.");
                    request.setInteractiveMode(false);
                }
            }
        }
    
        private static boolean isRunningOnCI(Properties systemProperties) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            final int windowSize = fessConfig.getRankFusionWindowSizeAsInteger();
            if (maxPageSize * 2 < windowSize) {
                logger.warn("rank.fusion.window_size is lower than paging.search.page.max.size. "
                        + "The window size should be 2x more than the page size. ({} * 2 <= {})", maxPageSize, windowSize);
                this.windowSize = 2 * maxPageSize;
            } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 25 */
        String PAGING_PAGE_SIZE = "paging.page.size";
    
        /** The key of the configuration. e.g. 5 */
        String PAGING_PAGE_RANGE_SIZE = "paging.page.range.size";
    
        /** The key of the configuration. e.g. true */
        String PAGING_PAGE_RANGE_FILL_LIMIT = "paging.page.range.fill.limit";
    
        /** The key of the configuration. e.g. 1000 */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                result
            }
        }
    
        /**
         * Note that [findJvmRootsForJavaFiles] parses the given [files] because it needs access to each file's package name. To avoid parsing
         * errors, [registerJavaPsiFacade] ensures that the Java language level is configured before [findJvmRootsForJavaFiles] is called.
         */
        fun findJvmRootsForJavaFiles(files: List<PsiJavaFile>): List<PsiDirectory> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    is an instance of the specified type, as determined by calling the Class.isInstance(Object) method on that type, passing the the examined object. any(Class<T>) - Static method in class org.hamcrest.CoreMatchers Creates a matcher that matches when the examined object is an instance of the specified type, as determined by calling the Class.isInstance(Object) method on that type, passing the the examined object. AnyOf<T> - Class in org.hamcrest.core Calculates the logical disjunction of multiple matchers....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                is KtDotQualifiedExpression -> findFakePackageToShorten(element)
                else -> error("Unexpected ${element::class}")
            }
        }
    
        /**
         * Returns `true` if adding [classToImport] import to the [file] might alter or break the
         * resolve of existing references in the file.
         *
         * N.B.: At the moment it might have both false positives and false negatives, since it does not
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top