Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,957 for Option (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Quantize composite functions with QDQ input / outputs.";
      let options = [
        Option<"enable_per_channel_quantized_weight_",
            "enable-per-channel-quantized-weight",
            "bool", /*default=*/"true",
            "Whether to enable per-channel quantized weights.">,
        Option<"mlir_dump_file_name_", "mlir-dump-file-name",
            "std::optional<std::string>", /*default=*/"std::nullopt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. pkg/scheduler/scheduler.go

    	dynInformerFactory dynamicinformer.DynamicSharedInformerFactory,
    	recorderFactory profile.RecorderFactory,
    	opts ...Option) (*Scheduler, error) {
    
    	logger := klog.FromContext(ctx)
    	stopEverything := ctx.Done()
    
    	options := defaultSchedulerOptions
    	for _, opt := range opts {
    		opt(&options)
    	}
    
    	if options.applyDefaultProfile {
    		var versionedCfg configv1.KubeSchedulerConfiguration
    		scheme.Scheme.Default(&versionedCfg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. .idea/codeStyles/codeStyleConfig.xml

    <component name="ProjectCodeStyleConfiguration">
      <state>
        <option name="USE_PER_PROJECT_SETTINGS" value="true" />
        <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
      </state>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:10:36 UTC 2024
    - 210 bytes
    - Viewed (0)
  4. platforms/core-runtime/build-configuration/src/main/java/org/gradle/buildconfiguration/tasks/UpdateDaemonJvm.java

        public abstract RegularFileProperty getPropertiesFile();
    
        /**
         * The version of the JVM required to run the Gradle Daemon.
         *
         * @since 8.8
         */
        @Input
        @Optional
        @Option(option = "jvm-version", description = "The version of the JVM required to run the Gradle Daemon.")
        @Incubating
        public abstract Property<JavaVersion> getJvmVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/AbstractReferenceShortenerForWholeFileTest.kt

                        this += ShortenStrategy.entries.associateWith { option ->
                            val shorteningsForOption = collectPossibleReferenceShortenings(
                                mainFile,
                                mainFile.textRange,
                                classShortenStrategy = { option },
                                callableShortenStrategy = { option }
                            )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/net/dnsconfig_unix.go

    					// Linux (use-vc), FreeBSD (usevc) and OpenBSD (tcp) option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    					// "Sets RES_USEVC in _res.options.
    					//  This option forces the use of TCP for DNS resolutions."
    					// https://www.freebsd.org/cgi/man.cgi?query=resolv.conf&sektion=5&manpath=freebsd-release-ports
    					// https://man.openbsd.org/resolv.conf.5
    					conf.useTCP = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. .idea/kotlinc.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project version="4">
      <component name="KotlinCompilerSettings">
        <option name="additionalArguments" value="-version -Xallow-kotlin-package -Xskip-metadata-version-check" />
      </component>
      <component name="KotlinJpsPluginSettings">
        <option name="version" value="2.0.20-dev-4579" />
      </component>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri May 24 13:06:56 UTC 2024
    - 356 bytes
    - Viewed (0)
  8. pilot/pkg/networking/plugin/authz/authorization.go

    	option := builder.Option{
    		IsCustomBuilder: actionType == Custom,
    		UseFilterState:  useFilterState,
    		UseExtendedJwt:  proxy.SupportsEnvoyExtendedJwt(),
    	}
    	selectionOpts := model.PolicyMatcherForProxy(proxy).WithService(svc)
    	policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
    	b := builder.New(tdBundle, push, policies, option)
    	return &Builder{builder: b}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

            assertArgumentNotNull("options", options);
    
            final T dest = ClassUtil.newInstance(destClass);
            copyMapToMap(src, dest, options);
            return dest;
        }
    
        protected static CopyOptions buildCopyOptions(final Consumer<CopyOptions> option) {
            final CopyOptions copyOptions = new CopyOptions();
            option.accept(copyOptions);
            return copyOptions;
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. buildscripts/checkdeps.sh

    	KNAME=$(uname -s)
    	ARCH=$(uname -m)
    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    ## Once OSX has the option, below function is good enough.
    ##
    ## readlink() {
    ##     return /bin/readlink -f "$1"
    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    	cd $(dirname $TARGET_FILE)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top