Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 394 for CL (0.02 sec)

  1. doc/next/6-stdlib/99-minor/go/types/cl-577715.md

    <!-- CL 577715, CL 579076 -->
    By default, go/types now produces [Alias] type nodes for type aliases.
    This behavior can be controlled by the `GODEBUG` `gotypesalias` flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 21:30:00 UTC 2024
    - 230 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

                                      llvm::cl::init("-"));
    // NOLINTNEXTLINE
    opt<bool> use_splatted_constant(
        "use-splatted-constant",
        llvm::cl::desc(
            "Replace constants with randomly generated splatted tensors"),
        llvm::cl::init(false), llvm::cl::Hidden);
    // NOLINTNEXTLINE
    opt<bool> input_mlir(
        "input-mlir",
        llvm::cl::desc("Take input TensorFlow model in textual MLIR instead of "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    extern llvm::cl::opt<std::string> input_file_name;
    extern llvm::cl::opt<std::string> output_file_name;
    extern llvm::cl::opt<bool> use_splatted_constant;
    extern llvm::cl::opt<bool> input_mlir;
    extern llvm::cl::opt<bool> output_mlir;
    extern llvm::cl::list<std::string> custom_opdefs;
    extern llvm::cl::opt<bool> emit_quant_adaptor_ops;
    extern llvm::cl::opt<std::string> quant_stats_file_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/initialization/MixInLegacyTypesClassLoaderTest.groovy

            def cl = loader.loadClass(className)
            cl.classLoader.is(loader)
    
            cl.SOME_CONST == "Value"
            cl.getSOME_CONST() == "Value"
    
            cl.SOME_CONST_WITH_GETTER == "Other Value"
            cl.getSOME_CONST_WITH_GETTER() == "Other Value"
    
            cl.SOME_CONST_WITH_RHS_EXPRESSION == "Derived Value"
            cl.getSOME_CONST_WITH_RHS_EXPRESSION() == "Derived Value"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 22 23:58:47 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.cc

        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> control_output_arrays(
        "tf-control-output-arrays",
        llvm::cl::desc("Control output node names, separated by ','"),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> inference_type(
        "tf-inference-type",
        llvm::cl::desc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

    // NOLINTNEXTLINE
    static opt<bool, true> emit_custom_ops_flag(
        "emit-custom-ops",
        llvm::cl::desc("Emit Custom operations in the generated TFLite model"),
        llvm::cl::location(emit_custom_ops), llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    static opt<bool, true> lower_tensor_list_ops_flag(
        "lower-tensor-list-ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. doc/next/9-todo.md

    CL 458895 - an x/playground fix that mentioned an accepted cmd/go proposal go.dev/issue/40728 in Go 1.16 milestone...
    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    CL 561935 - crypto CL that used purego tag and mentioned accepted-but-not-implemented proposal https://go.dev/issue/23172 to document purego tag; doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf_mlir_translate_main.cc

    // NOLINTNEXTLINE
    static llvm::cl::opt<std::string> input_filename(llvm::cl::Positional,
                                                     llvm::cl::desc("<input file>"),
                                                     llvm::cl::init("-"));
    
    // NOLINTNEXTLINE
    static llvm::cl::opt<std::string> output_filename(
        "o", llvm::cl::desc("Output filename"), llvm::cl::value_desc("filename"),
        llvm::cl::init("-"));
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.h

    // Import options.
    extern llvm::cl::opt<std::string> input_arrays;
    extern llvm::cl::opt<std::string> input_dtypes;
    extern llvm::cl::opt<std::string> input_shapes;
    extern llvm::cl::opt<std::string> output_arrays;
    extern llvm::cl::opt<std::string> control_output_arrays;
    extern llvm::cl::opt<std::string> inference_type;
    extern llvm::cl::opt<std::string> min_values;
    extern llvm::cl::opt<std::string> max_values;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client.go

    		cfg := TranslateObject(item, kind, cl.domainSuffix)
    		out = append(out, cfg)
    	}
    
    	return out
    }
    
    func (cl *Client) allKinds() map[config.GroupVersionKind]kclient.Untyped {
    	cl.kindsMu.RLock()
    	defer cl.kindsMu.RUnlock()
    	return maps.Clone(cl.kinds)
    }
    
    func (cl *Client) kind(r config.GroupVersionKind) (kclient.Untyped, bool) {
    	cl.kindsMu.RLock()
    	defer cl.kindsMu.RUnlock()
    	ch, ok := cl.kinds[r]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top