Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,178 for Option (0.2 sec)

  1. pkg/controller/controller_utils.go

    		// we get it from etcd to be sure to have fresh data.
    		option := metav1.GetOptions{}
    		if firstTry {
    			option.ResourceVersion = "0"
    			firstTry = false
    		}
    		oldNode, err = c.CoreV1().Nodes().Get(ctx, nodeName, option)
    		if err != nil {
    			return err
    		}
    
    		var newNode *v1.Node
    		oldNodeCopy := oldNode
    		updated := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. cmd/common-main.go

    	if dir == "" {
    		dir = getDefaultDir()
    	}
    
    	if dir == "" {
    		if !dirSet {
    			return nil, fmt.Errorf("missing option must be provided")
    		}
    		return nil, fmt.Errorf("provided option cannot be empty")
    	}
    
    	// Disallow relative paths, figure out absolute paths.
    	dirAbs, err := filepath.Abs(dir)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. src/net/http/roundtrip_js.go

    	"strconv"
    	"strings"
    	"syscall/js"
    )
    
    var uint8Array = js.Global().Get("Uint8Array")
    
    // jsFetchMode is a Request.Header map key that, if present,
    // signals that the map entry is actually an option to the Fetch API mode setting.
    // Valid values are: "cors", "no-cors", "same-origin", "navigate"
    // The default is "same-origin".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

        std::string& custom_option_buffer) {
      // There is something worth noting in the ordering of the custom op option:
      // At the MLIR level, all the option is ordered alphabetcially, so there is
      // no way for us to retrieve the original order, so please make sure you are
      // reading custom option from dictionary rather than depending on the order.
      flexbuffers::Builder fbb;
      size_t start_map = fbb.StartMap();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. gradle/wrapper/gradle-wrapper.jar

    nParserSta.class package org.gradle.cli; public final synchronized class CommandLineParser$KnownOptionParserSta extends CommandLineParser$OptionParserState { public final CommandLineParser$OptionString optionString; public final CommandLineOption option; public final ParsedCommandLine commandLine; public final CommandLineParser$ParserState state; public final java.util.ArrayList values; public void CommandLineParser$KnownOptionParserSta(CommandLineParser$OptionString, CommandLineOption, ParsedCommandLine,...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 08:44:14 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Some IDEs provide a convenience option to delegate the "test classpath generation and execution" to the build.
    In IntelliJ, you can find this option under Preferences... > Build, Execution, Deployment > Build Tools > Gradle > Runner > Delegate IDE build/run actions to Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	}
    
    	// Binary is there, so try to parse version
    	verCmd := exec.Command(iptablesSaveBin, "--version")
    	// shockingly, `iptables-save` returns 0 if you pass it an unrecognized/bad option, so
    	// `os/exec` will return a *nil* error, even if the command fails. So, we must slurp stderr, and check it to
    	// see if the command *actually* failed due to not recognizing the version flag.
    	var verStdOut bytes.Buffer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pilot/pkg/model/service.go

    func (s *Service) Key() string {
    	if s == nil {
    		return ""
    	}
    
    	return s.Attributes.Namespace + "/" + string(s.Hostname)
    }
    
    var serviceCmpOpts = []cmp.Option{cmpopts.IgnoreFields(AddressMap{}, "mutex")}
    
    func (s *Service) CmpOpts() []cmp.Option {
    	return serviceCmpOpts
    }
    
    // Resolution indicates how the service instances need to be resolved before routing traffic.
    type Resolution int
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller.go

    	model.NoopAmbientIndexes
    	model.NetworkGatewaysHandler
    }
    
    type Option func(*Controller)
    
    func WithClusterID(clusterID cluster.ID) Option {
    	return func(o *Controller) {
    		o.clusterID = clusterID
    	}
    }
    
    func WithNetworkIDCb(cb func(endpointIP string, labels labels.Instance) network.ID) Option {
    	return func(o *Controller) {
    		o.networkIDCallback = cb
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        }
    
        /**
         * Whether or not classes without source location should be instrumented. Defaults to {@code false}.
         *
         * This property is only taken into account if the used JaCoCo version supports this option (JaCoCo version >= 0.7.6)
         */
        @Input
        public boolean isIncludeNoLocationClasses() {
            return includeNoLocationClasses;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top