Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,892 for Option (0.22 sec)

  1. .idea/inspectionProfiles/Gradle.xml

              <option value="io.reactivex.annotations.Experimental" />
              <option value="org.apache.http.annotation.Beta" />
              <option value="org.gradle.api.Incubating" />
              <option value="org.jetbrains.annotations.ApiStatus.Experimental" />
              <option value="rx.annotations.Beta" />
              <option value="rx.annotations.Experimental" />
            </set>
          </option>
        </inspection_tool>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

    .multi-language-selector {
        display: block;
    }
    
    .multi-language-selector .language-option[data-lang='groovy'] {
        background-position: 20px center;
        padding-left: 32px;
    }
    
    .multi-language-selector .language-option[data-lang='kotlin'] {
        background-position: 30px center;
        padding-left: 27px;
    }
    
    .multi-language-selector .language-option {
        background-color: white;
        border: 1px solid #f7f7f8;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/passes.td

      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
      let options = [
        Option<"default_min_", "default-min", "double", "-1.0",
                   "Default minimum value for TFLite quantization">,
        Option<"default_max_", "default-max", "double", "1.0",
                   "Default maximum value for TFLite quantization">,
        Option<"is_signed_", "is-signed", "bool", "false",
                   "Is the corresponding integer signed">,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

            return optionFile.addPathOption(option);
        }
    
        public JavadocOptionFileOption<List<File>> addPathOption(String option, String joinBy) {
            return optionFile.addPathOption(option, joinBy);
        }
    
        public JavadocOptionFileOption<List<String>> addStringsOption(String option) {
            return optionFile.addStringsOption(option);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

            return baselines
        }
    
        @Option(option = "warmups", description = "Number of warmups before measurements")
        void setWarmups(@Nullable String warmups) {
            this.warmups = warmups
        }
    
        @Option(option = "runs", description = "Number of iterations of measurements")
        void setRuns(@Nullable String runs) {
            this.runs = runs
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      }
      if (values.empty()) {
        return errors::InvalidArgument(
            "SetConfiguration() needs number of values > 0");
      }
    
      TF_Filesystem_Option option;
      memset(&option, 0, sizeof(option));
      option.name = const_cast<char*>(name.c_str());
      TF_Filesystem_Option_Value option_value;
      memset(&option_value, 0, sizeof(option_value));
      option_value.type_tag = TF_Filesystem_Option_Type_Buffer;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    // Other strategies are also viable, though:
    // Option 1) Return an empty string in case of error, but allow the user to
    //    specify explicitly which errors to ignore.
    // Option 2) Return the partially evaluated string if it is itself a valid
    //    string, otherwise return the empty string in case of error.
    // Option 3) Option 1 and 2.
    // Option 4) Always return an empty string for now and implement Option 1 as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

            def action = Mock(Function)
    
            when:
            def input = userInputHandler.askUser(action)
    
            then:
            0 * action._
            0 * outputEventBroadcaster._
            0 * userInputHandler._
    
            when:
            def result = input.get()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top