Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for celconfig (0.17 sec)

  1. cmd/kube-apiserver/app/config.go

    		KubeAPIs:      c.KubeAPIs.Complete(),
    		ApiExtensions: c.ApiExtensions.Complete(),
    
    		ExtraConfig: c.ExtraConfig,
    	}}, nil
    }
    
    // NewConfig creates all the resources for running kube-apiserver, but runs none of them.
    func NewConfig(opts options.CompletedOptions) (*Config, error) {
    	c := &Config{
    		Options: opts,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/certs/util.go

    func CreateTestCert(t *testing.T, caCert *x509.Certificate, caKey crypto.Signer, altNames certutil.AltNames) (*x509.Certificate, crypto.Signer, *pkiutil.CertConfig) {
    	config := &pkiutil.CertConfig{
    		Config: certutil.Config{
    			CommonName: "testCert",
    			Usages:     []x509.ExtKeyUsage{x509.ExtKeyUsageAny},
    			AltNames:   altNames,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_tpu_embedding_ops.cc

      // No TPU embedding ops.
      if (!recv_op && !send_op) return success();
    
      Location loc = recv_op ? recv_op.getLoc() : send_op.getLoc();
      StringRef config = recv_op ? recv_op.getConfig() : send_op.getConfig();
    
      // Create XlaRecvTPUEmbeddingDeduplicationData op.
      OpBuilder builder(region);
      auto output_ty =
          RankedTensorType::get({}, VariantType::get(region->getContext()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 22:55:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/stablehlo/BUILD

            "//tensorflow/compiler/mlir/quantization/stablehlo:passes",
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:config",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:static_range_ptq",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:weight_only_ptq",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/extension/wasmplugin.go

    		switch {
    		case p.Type == extensions.PluginType_NETWORK:
    			wasmExtensionConfig := p.BuildNetworkWasmFilter()
    			if wasmExtensionConfig == nil {
    				continue
    			}
    			updatePluginConfig(wasmExtensionConfig.GetConfig(), pullSecrets)
    			typedConfig := protoconv.MessageToAny(wasmExtensionConfig)
    			ec := &core.TypedExtensionConfig{
    				Name:        p.ResourceName,
    				TypedConfig: typedConfig,
    			}
    			result = append(result, ec)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. operator/pkg/validate/validate_values_test.go

        excludeInboundPorts: "333,444"
        clusterDomain: "my.domain"
        lifecycle:
          preStop:
            exec:
              command: ["/bin/sh", "-c", "sleep 30"]
    `,
    		},
    		{
    			desc: "CNIConfig",
    			yamlStr: `
    cni:
      cniBinDir: "/var/lib/cni/bin"
      cniConfDir: "/var/run/multus/cni/net.d"
    `,
    		},
    
    		{
    			desc: "BadIPRange",
    			yamlStr: `
    global:
      proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    	EnableProfiling           bool
    	DebugSocketPath           string
    	EnableContentionProfiling bool
    	EnablePriorityAndFairness bool
    }
    
    func NewFeatureOptions() *FeatureOptions {
    	defaults := server.NewConfig(serializer.CodecFactory{})
    
    	return &FeatureOptions{
    		EnableProfiling:           defaults.EnableProfiling,
    		DebugSocketPath:           defaults.DebugSocketPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/peer.go

    func CreatePeerEndpointLeaseReconciler(c genericapiserver.Config, storageFactory serverstorage.StorageFactory) (reconcilers.PeerEndpointLeaseReconciler, error) {
    	ttl := DefaultPeerEndpointReconcilerTTL
    	config, err := storageFactory.NewConfig(api.Resource("apiServerPeerIPInfo"))
    	if err != nil {
    		return nil, fmt.Errorf("error creating storage factory config: %w", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 08:15:02 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/BUILD

        ],
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:config",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:static_range_ptq",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:weight_only_ptq",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 20:18:36 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/export_test.go

    	ctxt, ok := testCtxts[arch]
    	if !ok {
    		tb.Fatalf("unknown arch %s", arch)
    	}
    	if ctxt.Arch.PtrSize != 8 {
    		tb.Fatal("testTypes is 64-bit only")
    	}
    	c := &Conf{
    		config: NewConfig(arch, testTypes, ctxt, true, false),
    		tb:     tb,
    	}
    	return c
    }
    
    type Conf struct {
    	config *Config
    	tb     testing.TB
    	fe     Frontend
    }
    
    func (c *Conf) Frontend() Frontend {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top