Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,002 for opticks (0.1 sec)

  1. 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)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test_helper.cc

        MarkForCompilationPassTestHelper::Options options) {
      // Assign all unassigned nodes to the CPU device.
      static const char* kCpuDevice = "/job:localhost/replica:0/task:0/cpu:0";
      for (Node* n : (*graph)->nodes()) {
        if (n->assigned_device_name().empty()) {
          n->set_assigned_device_name(kCpuDevice);
        }
      }
    
      SessionOptions session_options;
      if (options.enable_global_jit) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 09 19:51:48 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. security/pkg/pki/util/generate_cert.go

    		}
    		return genCert(options, ecPriv, &ecPriv.PublicKey)
    	}
    
    	if options.RSAKeySize < minimumRsaKeySize {
    		return nil, nil, fmt.Errorf("requested key size does not meet the minimum required size of %d (requested: %d)", minimumRsaKeySize, options.RSAKeySize)
    	}
    	rsaPriv, err := rsa.GenerateKey(rand.Reader, options.RSAKeySize)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K 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. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelWriter.java

         * @param options The options to use for serialization, may be {@code null} to use the default values.
         * @param model The model to serialize, must not be {@code null}.
         * @throws IOException If the model could not be serialized.
         */
        void write(File output, Map<String, Object> options, Model model) throws IOException;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. pkg/registry/core/namespace/storage/storage.go

    	// Ensure we have a UID precondition
    	if options == nil {
    		options = metav1.NewDeleteOptions(0)
    	}
    	if options.Preconditions == nil {
    		options.Preconditions = &metav1.Preconditions{}
    	}
    	if options.Preconditions.UID == nil {
    		options.Preconditions.UID = &namespace.UID
    	} else if *options.Preconditions.UID != namespace.UID {
    		err = apierrors.NewConflict(
    			api.Resource("namespaces"),
    			name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/delete_test.go

    			}
    			if !utilpointer.Int64Equal(tt.args.options.GracePeriodSeconds, tt.wantGracePeriodSeconds) {
    				t.Errorf("options.GracePeriodSeconds = %v, want %v", ptr.Deref(tt.args.options.GracePeriodSeconds, 0), ptr.Deref(tt.wantGracePeriodSeconds, 0))
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 11:44:07 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top