Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 661 for nAmespace (0.16 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/views/arg_view.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h"
    
    #include "tensorflow/c/experimental/ops/gen/model/arg_spec.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    ArgView::ArgView(ArgSpec arg) : arg_(arg) {}
    
    string ArgView::VariableName() const { return arg_.name(); }
    
    string ArgView::SetterMethod() const {
      if (IsList()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.gen.go

    	// NamespaceNotInjected defines a diag.MessageType for message "NamespaceNotInjected".
    	// Description: A namespace is not enabled for Istio injection.
    	NamespaceNotInjected = diag.NewMessageType(diag.Info, "IST0102", "The namespace is not enabled for Istio injection. Run 'kubectl label namespace %s istio-injection=enabled' to enable it, or 'kubectl label namespace %s istio-injection=disabled' to explicitly mark it as not needing injection.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/common/case_format_test.cc

    #include "tensorflow/c/experimental/ops/gen/common/case_format.h"
    
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    namespace {
    
    // For each test case, we manually construct the 4 variations in string case and
    // test all 16 conversions: from and to each of the 4 string case variations.
    struct Variations {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. pkg/kubelet/configmap/configmap_manager.go

    	listConfigMap := func(namespace string, opts metav1.ListOptions) (runtime.Object, error) {
    		return kubeClient.CoreV1().ConfigMaps(namespace).List(context.TODO(), opts)
    	}
    	watchConfigMap := func(namespace string, opts metav1.ListOptions) (watch.Interface, error) {
    		return kubeClient.CoreV1().ConfigMaps(namespace).Watch(context.TODO(), opts)
    	}
    	newConfigMap := func() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/kubelet/secret/secret_manager.go

    	listSecret := func(namespace string, opts metav1.ListOptions) (runtime.Object, error) {
    		return kubeClient.CoreV1().Secrets(namespace).List(context.TODO(), opts)
    	}
    	watchSecret := func(namespace string, opts metav1.ListOptions) (watch.Interface, error) {
    		return kubeClient.CoreV1().Secrets(namespace).Watch(context.TODO(), opts)
    	}
    	newSecret := func() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. pkg/config/model.go

    	UID string `json:"uid,omitempty"`
    
    	// Name is a unique immutable identifier in a namespace
    	Name string `json:"name,omitempty"`
    
    	// Namespace defines the space for names (optional for some types),
    	// applications may choose to use namespaces for a variety of purposes
    	// (security domains, fault domains, organizational domains)
    	Namespace string `json:"namespace,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.h

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    
    namespace mlir {
    namespace lite {
    
    // Sparsify the `input_model` and write the result to a flatbuffer `builder`.
    absl::Status SparsifyModel(const tflite::ModelT& input_model,
                               flatbuffers::FlatBufferBuilder* builder);
    }  // namespace lite
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. operator/pkg/verifier/verifier.go

    		kind := un.GetKind()
    		name := un.GetName()
    		namespace := un.GetNamespace()
    		kinds := resourceKinds(un)
    		if namespace == "" {
    			namespace = v.istioNamespace
    		}
    		switch kind {
    		case "Deployment":
    			deployment := &appsv1.Deployment{}
    			err = info.Client.
    				Get().
    				Resource(kinds).
    				Namespace(namespace).
    				Name(name).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla_passes.h

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/DialectConversion.h"  // from @llvm-project
    
    namespace mlir {
    
    namespace func {
    class FuncOp;
    }
    class ModuleOp;
    class Operation;
    template <typename T>
    class OperationPass;
    class Pass;
    
    namespace mhlo {
    
    /// Converter to be used along with the fallback Tf2Xla patterns below.
    class Tf2XlaTypeConverter : public TypeConverter {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    // examples implements ExampleInterface
    type examples struct {
    	client rest.Interface
    	ns     string
    }
    
    // newExamples returns a Examples
    func newExamples(c *CrV1Client, namespace string) *examples {
    	return &examples{
    		client: c.RESTClient(),
    		ns:     namespace,
    	}
    }
    
    // Get takes name of the example, and returns the corresponding example object, and an error if there is any.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top