Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,354 for opticks (0.16 sec)

  1. pkg/log/options_test.go

    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    
    	"github.com/spf13/cobra"
    )
    
    func TestOpts(t *testing.T) {
    	resetGlobals()
    
    	cases := []struct {
    		cmdLine string
    		result  Options
    	}{
    		{"--log_as_json", Options{
    			OutputPaths:         []string{defaultOutputPath},
    			ErrorOutputPaths:    []string{defaultErrorOutputPath},
    			defaultOutputLevels: "default:info,grpc:none",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. pilot/pkg/grpc/grpc.go

    )
    
    // ClientOptions returns consistent grpc dial options with custom dial options
    func ClientOptions(options *istiokeepalive.Options, tlsOpts *TLSOptions) ([]grpc.DialOption, error) {
    	if options == nil {
    		options = istiokeepalive.DefaultOption()
    	}
    	keepaliveOption := grpc.WithKeepaliveParams(keepalive.ClientParameters{
    		Time:    options.Time,
    		Timeout: options.Timeout,
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 04:27:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/options/validation_test.go

    	testCases := []struct {
    		name         string
    		options      *ServerRunOptions
    		expectErrors bool
    		gate         bool
    	}{
    		{
    			name:         "no service cidr",
    			expectErrors: true,
    			options:      makeOptionsWithCIDRs("", ""),
    		},
    		{
    			name:         "only secondary service cidr",
    			expectErrors: true,
    			options:      makeOptionsWithCIDRs("", "10.0.0.0/16"),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

        }
    
        def "can configure options with an Action"() {
            given:
            buildFile << '''
                apply plugin: "java"
                javadoc.options({ MinimalJavadocOptions options ->
                    options.header = 'myHeader'
                } as Action<MinimalJavadocOptions>)
            '''.stripIndent()
            writeSourceFile()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandler.java

            public <T> T selectOption(String question, final Collection<T> options, final T defaultOption) {
                return choice(question, options).defaultOption(defaultOption).ask();
            }
    
            @Override
            public <T> Choice<T> choice(String question, Collection<T> options) {
                if (options.isEmpty()) {
                    throw new IllegalArgumentException("No options provided.");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/options/validation_test.go

    		t.Run(test.runtimeConfig, func(t *testing.T) {
    			options := &Options{
    				Features: &genericoptions.FeatureOptions{
    					EnablePriorityAndFairness: true,
    				},
    				APIEnablement: genericoptions.NewAPIEnablementOptions(),
    			}
    			options.APIEnablement.RuntimeConfig.Set(test.runtimeConfig)
    
    			var errMessageGot string
    			if errs := validateAPIPriorityAndFairness(options); len(errs) > 0 {
    				errMessageGot = errs[0].Error()
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/pjrt_base_device.cc

                                   const Options& options)
        : LocalDevice(session_options,
                      BuildPjRtBaseDeviceAttributes(options.device_name_prefix,
                                                    options.device_name,
                                                    options.device_ordinal)),
          metadata_(DeviceType(options.compilation_device_name),
                    options.shape_determination_fns) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. docs/en/docs/reference/responses.md

        options:
            members:
                - chunk_size
                - charset
                - status_code
                - media_type
                - body
                - background
                - raw_headers
                - render
                - init_headers
                - headers
                - set_cookie
                - delete_cookie
    
    ::: fastapi.responses.HTMLResponse
        options:
            members:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                    @Nested
                    public Options getOptions() {
                        return new Options();
                    }
    
                    @Nested
                    public List<Options> getOptionsList() {
                        return Arrays.asList(new Options());
                    }
    
                    @Nested
                    public Iterable<Options> getIterableOptions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	case "all":
    		flags = []string{
    			options.APIServerAdvertiseAddress,
    			options.APIServerBindPort,
    			options.CfgPath,
    			options.ControlPlane,
    			options.NodeName,
    			options.FileDiscovery,
    			options.TokenDiscovery,
    			options.TokenDiscoveryCAHash,
    			options.TokenDiscoverySkipCAHash,
    			options.TLSBootstrapToken,
    			options.TokenStr,
    			options.CertificateKey,
    			options.Patches,
    			options.DryRun,
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top