Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,177 for op_eon (0.97 sec)

  1. pkg/kubelet/network/dns/dns.go

    // append option will overwrite the previous one either in new line or in the same line.
    func appendOptions(options []string, newOption ...string) []string {
    	var optionMap = make(map[string]string)
    	for _, option := range options {
    		optName := strings.Split(option, ":")[0]
    		optionMap[optName] = option
    	}
    	for _, option := range newOption {
    		optName := strings.Split(option, ":")[0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/behind-a-proxy.md

    ### Providing the `root_path`
    
    To achieve this, you can use the command line option `--root-path` like:
    
    <div class="termy">
    
    ```console
    $ fastapi run main.py --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    If you use Hypercorn, it also has the option `--root-path`.
    
    !!! note "Technical Details"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. gorm.go

    	if db != nil {
    		for _, plugin := range c.Plugins {
    			if err := plugin.Initialize(db); err != nil {
    				return err
    			}
    		}
    	}
    	return nil
    }
    
    // Option gorm option interface
    type Option interface {
    	Apply(*Config) error
    	AfterInitialize(*DB) error
    }
    
    // DB GORM DB definition
    type DB struct {
    	*Config
    	Error        error
    	RowsAffected int64
    	Statement    *Statement
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Aug 20 11:46:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    	case "none": // no demangling
    		return []demangle.Option{}
    	}
    
    	panic(fmt.Sprintf("unknown demanglerMode %s", demanglerMode))
    }
    
    func demangleSingleFunction(fn *profile.Function, options []demangle.Option) {
    	if fn.Name != "" && fn.SystemName != fn.Name {
    		return // Already demangled.
    	}
    	// Copy the options because they may be updated by the call.
    	o := make([]demangle.Option, len(options))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/server.go

    	utilruntime.Must(features.AddFeatureGates(utilfeature.DefaultMutableFeatureGate))
    }
    
    // Option configures a framework.Registry.
    type Option func(runtime.Registry) error
    
    // NewSchedulerCommand creates a *cobra.Command object with default parameters and registryOptions
    func NewSchedulerCommand(registryOptions ...Option) *cobra.Command {
    	opts := options.NewOptions()
    
    	cmd := &cobra.Command{
    		Use: "kube-scheduler",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

                }
                if (option.startsWith("-")) {
                    throw new IllegalArgumentException(String.format("Cannot add option '%s' as an option cannot start with '-'.", option));
                }
                if (!OPTION_NAME_PATTERN.matcher(option).matches()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

        assertFalse(out.closed());
      }
    
      public void testClosesOnErrors_copyingToByteSinkThatThrows() {
        for (TestOption option : EnumSet.of(OPEN_THROWS, WRITE_THROWS, CLOSE_THROWS)) {
          TestByteSource okSource = new TestByteSource(bytes);
          assertThrows(IOException.class, () -> okSource.copyTo(new TestByteSink(option)));
          // ensure stream was closed IF it was opened (depends on implementation whether or not it's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. pkg/bootstrap/option/instances_test.go

    			key:      "discovery_address",
    			option:   option.DiscoveryAddress("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "localhost v4",
    			key:      "localhost",
    			option:   option.Localhost(option.LocalhostIPv4),
    			expected: option.LocalhostValue("127.0.0.1"),
    		},
    		{
    			testName: "localhost v6",
    			key:      "localhost",
    			option:   option.Localhost(option.LocalhostIPv6),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/CommandLineParserTest.groovy

            parser.option('a-option-other').hasDescription('this is option --a-option-other')
            parser.option('no-a-option').hasDescription('Disables option --a-option')
            parser.option('c-option')
            parser.option('no-c-option')
            def outstr = new StringWriter()
    
            expect:
            parser.printUsage(outstr)
            outstr.toString().readLines() == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  10. .idea/inspectionProfiles/idea_default.xml

                <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
                <option name="REQUIRED_TAGS" value="" />
              </value>
            </option>
            <option name="INNER_CLASS_OPTIONS">
              <value>
                <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
                <option name="REQUIRED_TAGS" value="" />
              </value>
            </option>
            <option name="METHOD_OPTIONS">
              <value>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 09 20:59:03 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top