Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,985 for optionB (0.23 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

    Paths
         :sub1:hello
         :sub2:hello
    
    Type
         CustomTask (CustomTask)
    
    Options
         --stringValue     Configures a string value in CustomTask.
                           Available values are:
                                optionA
                                optionB
                                optionC
    
    ${builtInOptions}
    
    Description
         -
    
    Group
         -
    
    BUILD SUCCESSFUL"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. pkg/log/options.go

    func (o *Options) WithStackdriverLoggingFormat() *Options {
    	o.useStackdriverFormat = true
    	return o
    }
    
    // WithTeeToUDS configures a parallel logging pipeline that writes logs to a server over UDS.
    // addr is the socket that the server listens on, and path is the HTTP path that process the log message.
    func (o *Options) WithTeeToUDS(addr, path string) *Options {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

        }
    
        /**
         * Defines a new option. By default, the option takes no arguments and has no description.
         *
         * @param options The options values.
         * @return The option, which can be further configured.
         */
        public CommandLineOption option(String... options) {
            for (String option : options) {
                if (optionsByString.containsKey(option)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_compiler_options_util_test.cc

      XlaCompiler::Options options = GenerateCompilerOptionsForPjRt(
          *device_setup_.flr(), device, platform_info, pjrt_device_compiler);
    
      EXPECT_EQ(options.device_type, compilation_device_type);
      EXPECT_EQ(options.device_ordinal, 0);
      EXPECT_NE(options.flib_def, nullptr);
      EXPECT_EQ(options.graph_def_version, TF_GRAPH_DEF_VERSION);
      EXPECT_FALSE(options.allow_cpu_custom_calls);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/options/options.go

    	// Flags hold the parsed CLI flags.
    	Flags *cliflag.NamedFlagSets
    }
    
    // NewOptions returns default scheduler app options.
    func NewOptions() *Options {
    	o := &Options{
    		SecureServing:  apiserveroptions.NewSecureServingOptions().WithLoopback(),
    		Authentication: apiserveroptions.NewDelegatingAuthenticationOptions(),
    		Authorization:  apiserveroptions.NewDelegatingAuthorizationOptions(),
    		Deprecated: &DeprecatedOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. cmd/kubelet/app/options/options.go

    	fs.S...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options.go

    limitations under the License.
    */
    
    // Package options contains flags and options for initializing an apiserver
    package options
    
    import (
    	"fmt"
    	"net"
    	"os"
    	"strings"
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	peerreconcilers "k8s.io/apiserver/pkg/reconcilers"
    	genericoptions "k8s.io/apiserver/pkg/server/options"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/options.go

    limitations under the License.
    */
    
    // Package options provides the flags used for the controller manager.
    package options
    
    import (
    	"fmt"
    	"net"
    
    	v1 "k8s.io/api/core/v1"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	apiserveroptions "k8s.io/apiserver/pkg/server/options"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	clientset "k8s.io/client-go/kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            options[2].name == "my-option2"
            options[2].description == "Opposite option of --no-my-option2."
            options[3].name == "no-my-option2"
            options[3].description == "Opposite option Property<Boolean>"
            options[4].name == "rerun"
            options[4].description == "Causes the task to be re-run even if up-to-date."
        }
    
        def "fail when multiple methods define same option"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Optional.java

     */
    @DoNotMock("Use Optional.of(value) or Optional.absent()")
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    public abstract class Optional<T> implements Serializable {
      /**
       * Returns an {@code Optional} instance with no contained reference.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> this method is equivalent to Java 8's
       * {@code Optional.empty}.
       */
      public static <T> Optional<T> absent() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top