Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,429 for Option (0.16 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/BuildActionsFactoryTest.groovy

        void isSingleUseDaemon(def action) {
            def runnable = unwrapAction(action)
            def executor = unwrapExecutor(runnable)
            assert executor instanceof SingleUseDaemonClient
        }
    
        private Runnable unwrapAction(Action<?> action) {
            assert action instanceof Actions.RunnableActionAdapter
            return action.runnable
        }
    
        private BuildActionExecutor unwrapExecutor(Runnable runnable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

                setupListCondition(cb, dataConfigPager);
            });
    
            // update pager
            BeanUtil.copyBeanToBean(dataConfigList, dataConfigPager, option -> option.include(Constants.PAGER_CONVERSION_RULE));
            dataConfigPager.setPageNumberList(dataConfigList.pageRange(op -> {
                op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger());
            }).createPageNumberList());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. subprojects/build-events/build.gradle.kts

            because("This isn't declared as part of integtesting's API, but should be as logging's classes are in fact visible on the API")
        }
        integTestImplementation(project(":build-option"))
        integTestImplementation(project(":enterprise-operations"))
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. cmd/import-boss/README.md

      - A list of `AllowedPrefixes`
      - A list of `ForbiddenPrefixes`
    
    An import is allowed if it matches at least one allowed prefix and does not
    match any forbidden prefixes.
    
    Rules also have a boolean `Transitive` option. When this option is true, the
    rule is applied to transitive imports.
    
    Example:
    
    ```json
    {
      "Rules": [
        {
          "SelectorRegexp": "example[.]com",
          "AllowedPrefixes": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. docs/de/docs/deployment/manually.md

        $ hypercorn main:app --bind 0.0.0.0:80
    
        Running on 0.0.0.0:8080 over http (CTRL + C to quit)
        ```
    
        </div>
    
    !!! warning "Achtung"
        Denken Sie daran, die Option `--reload` zu entfernen, wenn Sie diese verwendet haben.
    
        Die Option `--reload` verbraucht viel mehr Ressourcen, ist instabiler, usw.
    
        Sie hilft sehr während der **Entwicklung**, aber Sie sollten sie **nicht** in der **Produktion** verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:35 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainCoexistWithCurrentOptionsIntegrationTest.groovy

        @Requires(IntegTestPreconditions.JavaHomeWithDifferentVersionAvailable)
        def "Given disabled auto-detection When using daemon toolchain Then option is ignored resolving with expected toolchain"() {
            given:
            def otherJvm = AvailableJavaHomes.differentVersion
            writeJvmCriteria(otherJvm)
            captureJavaHome()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/AbstractCodeQualityTask.java

        /**
         * The minimum heap size for the worker process.  When unspecified, no minimum heap size is set.
         *
         * Supports units like the command-line option {@code -Xms} such as {@code "1g"}.
         *
         * @return The minimum heap size.
         */
        @Optional
        @Input
        public abstract Property<String> getMinHeapSize();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/build.gradle.kts

        implementation(libs.guava)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":resources"))
        testImplementation(project(":persistent-cache"))
        testImplementation(project(":build-option"))
        testImplementation(project(":enterprise-operations"))
        testImplementation(testFixtures(project(":build-operations")))
        testImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/build.gradle.kts

        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
        api(projects.serviceProvider)
        api(project(":base-services"))
        api(project(":build-operations"))
        api(project(":build-option"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":enterprise-logging"))
        api(project(":enterprise-operations"))
        api(project(":execution"))
        api(project(":file-collections"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top