Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,533 for Option (0.19 sec)

  1. tensorflow/compiler/mlir/lite/converter_gen.cc

                  op.getGetterName(val.getName()));
              options.push_back(std::string(val.getName()));
            }
          }
        }
    
        os << "  tflite::" << tflite_option_name << "Builder b(*fbb);\n";
        for (const auto &option : options)
          os << formatv("  b.add_{0}(std::move({0}));\n", option);
        os << "  return b.Finish();\n}\n";
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ScalaCompileJavaToolchainIntegrationTest.groovy

        def "forkOptions #option is ignored for Scala "() {
            def currentJdk = Jvm.current()
            def otherJdk = AvailableJavaHomes.getDifferentVersion()
    
            if (option == "executable") {
                buildFile << """
                    compileScala {
                        options.fork = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 03:32:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileToolchainIntegrationTest.groovy

                }
            """
        }
    
        def "forkOptions #option is ignored for Groovy "() {
            def currentJdk = Jvm.current()
            def otherJdk = AvailableJavaHomes.getDifferentVersion()
    
            if (option == "executable") {
                buildFile << """
                    compileGroovy {
                        options.fork = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:37:16 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/topology_manager_test.go

    			policyOptions: map[string]string{
    				"unknown-option": "true",
    			},
    		},
    		{
    			description:    "Unknown policy name restricted policy",
    			policyName:     "restricted",
    			expectedPolicy: "restricted",
    			expectedError:  fmt.Errorf("unknown Topology Manager Policy option:"),
    			policyOptions: map[string]string{
    				"unknown-option": "true",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 13:04:32 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

                .withDslReference()
                .nagUser();
    
            this.generatedSourceOutputDirectory.fileProvider(file);
        }
    
        /**
         * If this option is set to a non-null directory, it will be passed to the Java compiler's `-h` option, prompting it to generate native headers to that directory.
         *
         * @since 4.10
         */
        @Optional
        @OutputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    `-S` or `--full-stacktrace`::
    The full stacktraces are printed out. This option renders stacktraces for deprecation warnings.
    
    &lt;No stacktrace options&gt;::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. pkg/adsc/delta.go

    	} else if c.cfg.BackoffPolicy != nil {
    		// We connected, so reset the backoff
    		c.cfg.BackoffPolicy.Reset()
    	}
    }
    
    type Option func(c *Client)
    
    func NewDelta(discoveryAddr string, config *DeltaADSConfig, opts ...Option) *Client {
    	if config == nil {
    		config = &DeltaADSConfig{}
    	}
    	config.Address = discoveryAddr
    	config.Config = setDefaultConfig(&config.Config)
    	c := &Client{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

    // remove the attribute and skip further processing on those ops.
    constexpr char kNoFallbackAttr[] = "no_fallback";
    // TF Quantization modes. These constants are defined as char arrays so they
    // can parsed by the pass option.
    constexpr char kDefaultMode[] = "DEFAULT";
    constexpr char kLegacyIntegerMode[] = "LEGACY_INTEGER";
    
    // Checks if the operation is TF FakeQuant ops.
    bool IsTfFakeQuantOp(Operation *op) {
      return llvm::isa<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * So the modular test output directory usually needs to be placed in a {@code --path-module} option.
         *
         * <ul>
         *   <li>If the test output directory is modular, then:
         *     <ul>
         *       <li>If a test module name is identical to a main module name,
         *           place the test directory in a {@code --patch-module} option.</li>
         *       <li>Otherwise, place the test directory on the module-path. However, this case
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    === Setting system properties
    
    You have two options to add system properties listed in order of priority:
    
    1. *Command Line:* Using the `-D` command-line option, you can pass a system property to the JVM, which runs Gradle.
    The `-D` option of the `gradle` command has the same effect as the `-D` option of the `java` command.
    +
    [source,text]
    ----
    $ ./gradlew build -Dgradle.wrapperUser=myuser
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top