Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,444 for opticks (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    			knownFormats: formats,
    			options:      options,
    		},
    	}
    }
    
    func (r *RatchetingSchemaValidator) Validate(new interface{}, options ...ValidationOption) *validate.Result {
    	sv := validate.NewSchemaValidator(r.schema, r.root, r.path, r.knownFormats, r.options...)
    	return sv.Validate(new)
    }
    
    func (r *RatchetingSchemaValidator) ValidateUpdate(new, old interface{}, options ...ValidationOption) *validate.Result {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    		configCluster := opts.ClusterID == cluster.ID
    
    		options := opts
    		options.ClusterID = cluster.ID
    		if !configCluster {
    			options.SyncTimeout = features.RemoteClusterTimeout
    		}
    		log.Infof("Initializing Kubernetes service registry %q", options.ClusterID)
    		options.ConfigCluster = configCluster
    		kubeRegistry := NewController(client, options)
    		kubeController := &kubeController{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    @Input
                    long goodTime
    
                    @Nested Options options = new Options()
    
                    @javax.inject.Inject
                    org.gradle.api.internal.file.FileResolver fileResolver
    
                    long badTime
    
                    static class Options {
                        @Input String goodNested = "good nested"
                        String badNested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exec/Crawler.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 " + Crawler.class.getCanonicalName() + " [options...] arguments...");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compiler_client.h

      virtual absl::StatusOr<std::string> BuildSerializedExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result) = 0;
    
      // Loads `serialized_executable` into an `ExecutableType` using `ClientType`.
      virtual StatusOr<std::unique_ptr<ExecutableType>> LoadExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. pkg/kubelet/network/dns/dns_test.go

    		t.Errorf("expected nameserver %s, got %+v", clusterNS, options[0].DNS)
    	}
    	if len(options[0].DNSSearch) == 0 || options[0].DNSSearch[0] != ".svc."+configurer.ClusterDomain {
    		t.Errorf("expected search %s, got %+v", ".svc."+configurer.ClusterDomain, options[0].DNSSearch)
    	}
    	if len(options[1].DNS) != 1 || options[1].DNS[0] != "127.0.0.1" {
    		t.Errorf("expected nameserver 127.0.0.1, got %+v", options[1].DNS)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelReader.java

            Object value = (options != null) ? options.get(INPUT_SOURCE) : null;
            return (InputSource) value;
        }
    
        private Path getRootDirectory(Map<String, ?> options) {
            Object value = (options != null) ? options.get(ROOT_DIRECTORY) : null;
            return (Path) value;
        }
    
        private Model read(InputStream input, Path pomFile, Map<String, ?> options) throws IOException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // store's PredicateFunc.
    func (e *Store) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
    	label := labels.Everything()
    	if options != nil && options.LabelSelector != nil {
    		label = options.LabelSelector
    	}
    	field := fields.Everything()
    	if options != nil && options.FieldSelector != nil {
    		field = options.FieldSelector
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_device_compiler_client.cc

    XlaDeviceCompilerClient::BuildExecutable(
        const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& result) {
      VLOG(2) << "Compiling to xla::LocalExecutable.";
    
      std::vector<const xla::Shape*> argument_layouts =
          GetShapePointers(result.xla_input_shapes);
      xla::ExecutableBuildOptions build_options = GetExecutableBuildOptions(
          options, result, client_->default_device_ordinal());
      TF_ASSIGN_OR_RETURN(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. cmd/kube-apiserver/app/config.go

    	"k8s.io/kubernetes/cmd/kube-apiserver/app/options"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/controlplane"
    	controlplaneapiserver "k8s.io/kubernetes/pkg/controlplane/apiserver"
    	generatedopenapi "k8s.io/kubernetes/pkg/generated/openapi"
    )
    
    type Config struct {
    	Options options.CompletedOptions
    
    	Aggregator    *aggregatorapiserver.Config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top