Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 679 for Option (0.1 sec)

  1. cmd/kube-scheduler/app/server_test.go

    	"k8s.io/kubernetes/cmd/kube-scheduler/app/options"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config/testing/defaults"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    func TestSetup(t *testing.T) {
    	// temp dir
    	tmpDir, err := os.MkdirTemp("", "scheduler-options")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(tmpDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

      QuantizationSpecs quant_specs_;
    
      Option<bool> enable_post_training_quantize_{
          *this, "post-training-quantize", llvm::cl::init(false),
          llvm::cl::desc("Enable post training quantization. Only used in tests.")};
    
      // A local flag is needed for testing conditions in
      // prepare_quantize_ptq_per_channel.mlir.
      Option<bool> enable_per_channel_quantization_{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      PipelineConfig pipeline_config = 3;
    
      QuantizationSpecs specs = 4;
    
      // Configures the quantization debugger.
      DebuggerConfig debugger_config = 5;
    
      // Defines calibration options for quantization. This option is only used for
      // activation of static range quantization (SRQ). Quantization calibration
      // method is set to MIN_MAX by default.
      CalibrationOptions calibration_options = 6;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    [NOTE]
    ====
    A change in `buildSrc` causes the whole project to become out-of-date.
    
    Thus, when making small incremental changes, the <<command_line_interface#sec:command_line_execution_options, `--no-rebuild` command-line option>> is often helpful to get faster feedback.
    Remember to run a full build regularly.
    ====
    
    == Declare properties in `gradle.properties` file
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/python/mlir.cc

          return;
        }
      }
      mlir::FallbackAsmResourceMap fallback_resource_map;
      mlir::BytecodeWriterConfig writer_config(fallback_resource_map);
      // TODO(jpienaar): Make this an option to the call.
      writer_config.setDesiredBytecodeVersion(1);
      std::string error;
      std::unique_ptr<llvm::ToolOutputFile> outputFile =
          mlir::openOutputFile(filename, &error);
      if (!error.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

            this.projectDir = projectLayout.getProjectDirectory().getAsFile();
            this.getSuiteThreadPoolSize().convention(DEFAULT_SUITE_THREAD_POOL_SIZE_DEFAULT);
        }
    
        /**
         * Copies the options from the source options into the current one.
         * @since 8.0
         */
        public void copyFrom(TestNGOptions other) {
            this.outputDirectory = other.outputDirectory;
            replace(this.includeGroups, other.includeGroups);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. internal/logger/logger.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager_linux.go

    	KernelTunableModify KernelTunableBehavior = "modify"
    )
    
    // setupKernelTunables validates kernel tunable flags are set as expected
    // depending upon the specified option, it will either warn, error, or modify the kernel tunable flags
    func setupKernelTunables(option KernelTunableBehavior) error {
    	desiredState := map[string]int{
    		utilsysctl.VMOvercommitMemory: utilsysctl.VMOvercommitMemoryAlways,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. cmd/utils.go

    	if err != nil {
    		return "", fmt.Errorf("auth url request err: %v", err)
    	}
    
    	// Modify u to choose the ldap option
    	u.Path += "/ldap"
    	// fmt.Println(u)
    
    	// Pick the LDAP login option. This would return a form page after
    	// following some redirects. `lastReq` would be the URL of the form
    	// page, where we need to POST (submit) the form.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            then:
            skipped(task)
            assertToolchainUsages(events, jdkMetadata, "JavaCompiler")
    
            where:
            option       | configure                                       | appendPath
            "java home"  | 'options.forkOptions.javaHome = file("<path>")' | ''
            "executable" | 'options.forkOptions.executable = "<path>"'     | OperatingSystem.current().getExecutableName('/bin/javac')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top