Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,354 for opticks (1.05 sec)

  1. src/internal/cpu/cpu.go

    			continue field
    		}
    
    		if key == "all" {
    			for i := range options {
    				options[i].Specified = true
    				options[i].Enable = enable
    			}
    			continue field
    		}
    
    		for i := range options {
    			if options[i].Name == key {
    				options[i].Specified = true
    				options[i].Enable = enable
    				continue field
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/addons.go

    	flags := []string{
    		options.CfgPath,
    		options.KubeconfigPath,
    		options.KubernetesVersion,
    		options.ImageRepository,
    		options.DryRun,
    	}
    	if name == "all" || name == "kube-proxy" {
    		flags = append(flags,
    			options.APIServerAdvertiseAddress,
    			options.ControlPlaneEndpoint,
    			options.APIServerBindPort,
    			options.NetworkingPodSubnet,
    		)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

            final Options options = new Options();
    
            final CmdLineParser parser = new CmdLineParser(options);
            try {
                parser.parseArgument(args);
            } catch (final CmdLineException e) {
                System.err.println(e.getMessage());
                System.err.println("java " + ThumbnailGenerator.class.getCanonicalName() + " [options...] arguments...");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    	"net/http"
    	"sync"
    	"time"
    
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/server/healthz"
    	"k8s.io/apiserver/pkg/server/options/encryptionconfig"
    	"k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/klog/v2"
    )
    
    // workqueueKey is the dummy key used to process change in encryption config file.
    const workqueueKey = "key"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compiler.h

      return CompileImpl(compile_options, options, function, args,
                         CompileScope::kFunction, compile_mode, /*ctx=*/nullptr,
                         profiler, out_compilation_result, out_executable);
    }
    
    template <typename ExecutableType, typename ClientType>
    Status DeviceCompiler<ExecutableType, ClientType>::CompileSingleOpIfNeeded(
        const XlaCompiler::Options& options,
        const std::vector<XlaCompiler::Argument>& args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device.cc

                         const Options& options)
        : LocalDevice(session_options,
                      BuildXlaDeviceAttributes(options.device_name_prefix,
                                               options.device_name,
                                               options.device_ordinal)),
          xla_metadata_(options.device_ordinal, options.platform,
                        DeviceType(options.compilation_device_name),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. pkg/config/schema/codegen/templates/clients.go.tmpl

    			&cache.ListWatch{
    				ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
    					options.FieldSelector = opts.FieldSelector
    					options.LabelSelector = opts.LabelSelector
    					return l(options)
    				},
    				WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
    					options.FieldSelector = opts.FieldSelector
    					options.LabelSelector = opts.LabelSelector
    					return w(options)
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/reset_test.go

    		data        *resetData
    	}{
    		{
    			name: "flags parsed correctly",
    			flags: map[string]string{
    				options.CertificatesDir:       "/tmp",
    				options.NodeCRISocket:         constants.CRISocketCRIO,
    				options.IgnorePreflightErrors: "all",
    				options.ForceReset:            "true",
    				options.DryRun:                "true",
    				options.CleanupTmpDir:         "true",
    			},
    			data: &resetData{
    				certificatesDir:       "/tmp",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 13:42:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/SelectOptionPromptEvent.java

        private final String question;
        private final List<String> options;
        private final int defaultOption;
    
        public SelectOptionPromptEvent(long timestamp, String question, List<String> options, int defaultOption) {
            super(timestamp);
            this.question = question;
            this.options = options;
            this.defaultOption = defaultOption;
        }
    
        public String getQuestion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler_test.cc

        RegisterXlaActivityListener(std::move(listener));
      }
    
      XlaCompiler::Options GetDefaultXlaOptions() {
        XlaCompiler::Options options;
        options.device_type = DeviceType(DEVICE_GPU_XLA_JIT);
        options.client = xla_device_compiler_->client();
        options.flib_def = flib_def_.get();
        return options;
      }
    
      absl::StatusOr<std::unique_ptr<xla::LocalExecutable>>
      BuildSampleXlaExecutable() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top