Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,444 for opticks (0.21 sec)

  1. manifests/addons/dashboards/lib/panels.libsonnet

        local heatmap = g.panel.heatmap,
        local options = heatmap.options,
    
        base(title, targets, desc=''):
          heatmap.new(title)
          + heatmap.queryOptions.withTargets(targets)
          + heatmap.queryOptions.withInterval('1m')
          + options.calculation.xBuckets.withMode('size')
          + options.calculation.xBuckets.withValue('1min')
          + options.withCellGap(0)
          + options.color.withMode('scheme')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

                getLogLevel() >> LogLevel.DEBUG
            }
            starter.startDaemon(options) >> client
    
            when:
            manager.reserveNewClient(options)
    
            then:
            manager.reserveIdleClient(options) == null
    
            when:
            manager.release(client)
    
            then:
            manager.reserveIdleClient(options) == client
        }
    
        def "clients are discarded when log level changes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/join_test.go

    			args: []string{"1.2.3.4:6443"},
    			flags: map[string]string{
    				options.FileDiscovery:            "https://foo",
    				options.TokenDiscovery:           "abcdef.0123456789abcdef",
    				options.TokenDiscoverySkipCAHash: "true",
    			},
    			expectError: true,
    		},
    		{
    			name: "pass if file discovery is set",
    			flags: map[string]string{
    				options.FileDiscovery: "https://foo",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top