Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,892 for Option (0.14 sec)

  1. 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)
  2. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    		{
    			object:   testPod,
    			options:  PrintOptions{},
    			expected: "NAME            AGE\ntest-pod-name   <unknown>\n",
    		},
    		// Test non-table default printing for a pod with "NoHeaders" option.
    		{
    			object:   testPod,
    			options:  PrintOptions{NoHeaders: true},
    			expected: "test-pod-name   <unknown>\n",
    		},
    		// Test non-table default printing for a pod with "WithNamespace" option.
    		{
    			object:   testPod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  3. pkg/kubelet/network/dns/dns.go

    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]
    		optionMap[optName] = option
    	}
    
    	options = []string{}
    	for _, v := range optionMap {
    		options = append(options, v)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

            private final LoggingConfiguration loggingConfiguration;
            private final Action<ExecutionListener> action;
            private final Action<Throwable> reporter;
    
            WithLogging(ServiceRegistry loggingServices, List<String> args, LoggingConfiguration loggingConfiguration, Action<ExecutionListener> action, Action<Throwable> reporter) {
                this.loggingServices = loggingServices;
                this.args = args;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/JavaExec.java

            return javaExecSpec.getDebugOptions();
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void debugOptions(Action<JavaDebugOptions> action) {
            javaExecSpec.debugOptions(action);
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public Property<String> getMainModule() {
            return mainModule;
        }
    
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            }
    
            /*This is an internal option, it's used in com.sun.tools.javac.util.Names#createTable(Options options). The -XD backdoor switch is used to set it, as described in a comment
            in com.sun.tools.javac.main.RecognizedOptions#getAll(OptionHelper helper). This option was introduced in JDK 7 and controls if compiler's name tables should be reused.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            final Options options = new Options();
            options.addOption(Option.builder(Character.toString(CLIManager.ACTIVATE_PROFILES))
                    .hasArg()
                    .build());
    
            ProfileActivation activation;
    
            activation = new ProfileActivation();
            performProfileActivation(parser.parse(options, new String[] {"-P", "test1,+test2,?test3,+?test4"}), activation);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/builder_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			option := Option{
    				IsCustomBuilder: tc.meshConfig != nil,
    			}
    			push := push(t, baseDir+tc.input, tc.meshConfig)
    			proxy := node(nil)
    			selectionOpts := model.PolicyMatcherForProxy(proxy)
    			policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
    			g := New(tc.tdBundle, push, policies, option)
    			if g == nil {
    				t.Fatalf("failed to create generator")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/wasmplugin_test.go

    			Path:   "/path",
    			Method: "GET",
    		},
    		Count: 1,
    		Retry: echo.Retry{
    			Options: append(defaultOptions, options...),
    		},
    		Check: checker,
    	}
    
    	_ = cltInstance.CallOrFail(ctx, httpOpts)
    }
    
    func sendTrafficToHostname(ctx framework.TestContext, checker echo.Checker, hostname string, options ...retry.Option) {
    	ctx.Helper()
    	if len(GetClientInstances()) == 0 {
    		ctx.Fatal("there is no client")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. common/config/.golangci.yml

        - linters:
            - staticcheck
          text: "SA1019: grpc.WithReturnConnectionError"
      # Independently from option `exclude` we use default exclude patterns,
      # it can be disabled by this option. To list all
      # excluded by default patterns execute `golangci-lint run --help`.
      # Default value for this option is true.
      exclude-use-default: true
      # Maximum issues count per one linter.
      # Set to 0 to disable.
      # Default: 50
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top