Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,865 for Option (0.15 sec)

  1. src/main/java/org/codelibs/fess/app/service/AccessTokenService.java

                setupListCondition(cb, accessTokenPager);
            });
    
            // update pager
            BeanUtil.copyBeanToBean(accessTokenList, accessTokenPager, option -> option.include(Constants.PAGER_CONVERSION_RULE));
            accessTokenPager.setPageNumberList(
                    accessTokenList.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.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEnablementIntegrationTest.groovy

            }
            """
    
            when:
            run(task, *options)
    
            then:
            if (ccOn) {
                result.assertHasPostBuildOutput("Configuration cache entry stored.")
            }
    
            where:
            task    | ccOn  | problemsAs| maxProblems   | quiet | recreate  | debug | options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.td

      let summary = "Test-only pass to test the PostCalibrationComponent.";
      let description = [{
        Runs the post-calibration passes for post-training quantization.
      }];
      let options = [
        Option<"unpack_quantized_types_", "unpack-quantized-types", "bool",
          /*default=*/"true", "Unpacks ops with uniform quantized types into "
          "operations without uniform quantized types (mostly i8 or i32).">
      ];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    Click _Edit_, on the page that opens click _Advanced options_.
    Using the Wrapper to execute the build is considered good practice with Gradle,
    and on automatic detection this option is selected by default.
    We’ll want to generate a build scan,
    so we’ll enter the `--scan` option in _Additional Gradle command line parameters_ field.
    
    image::ci-systems/teamcity-scan.png[]
    
    Save the settings and we’re ready to run the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/compile/internal/ssa/compile.go

    			}
    			if p.disabled && p.required {
    				return fmt.Sprintf("Cannot disable required SSA phase %s using -d=ssa/%s debug option", phase, phase)
    			}
    			passes[i] = p
    			matchedOne = true
    		}
    	}
    	if matchedOne {
    		return ""
    	}
    	return fmt.Sprintf("Did not find a phase matching %s in -d=ssa/... debug option", phase)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    If either option is disabled, the element that normally contains that content will be excluded from the XML report file.
    
    The default for each option is `true`.
    
    ===== outputPerTestCase
    
    The `outputPerTestCase` option, when enabled, associates any output logging generated during a test case to that test case in the results.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. 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)
Back to top