Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 253 for nAmespace (0.67 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

    #include "tensorflow/core/util/debug_data_dumper.h"
    #include "tsl/lib/monitoring/counter.h"
    #include "tsl/platform/error_logging.h"
    #include "tsl/platform/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    using mlir::LogicalResult;
    using mlir::ModuleOp;
    using mlir::OpPassManager;
    using mlir::PassManager;
    using mlir::func::FuncOp;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.h

    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    // Given an MLIR module, returns a GraphDef.
    absl::StatusOr<std::unique_ptr<GraphDef>> ConvertMlirToGraphdef(
        mlir::ModuleOp module, const GraphExportConfig& configs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. cni/pkg/repair/netns.go

    //
    // Instead, we rely directly on the procfs.
    // This rules out two possible methods:
    // * use crictl to inspect the pod; this returns the bind-mounted network namespace file.
    // * /var/lib/cni/results shows the outputs of CNI plugins; this containers the bind-mounted network namespace file.
    //
    // Instead, we traverse the procfs. Comments on this method are inline.
    func getPodNetNs(pod *corev1.Pod) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/common/view_util.cc

    #include "tensorflow/c/experimental/ops/gen/common/view_util.h"
    
    #include "absl/strings/str_join.h"
    #include "absl/strings/substitute.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    string Call(const string& object, const string& method,
                std::vector<string> arguments, const char* oper) {
      return absl::Substitute("$0$1$2($3)", object, oper, method,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top