Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,081 for initialize_ (0.17 sec)

  1. guava/src/com/google/common/cache/Striped64.java

     * so.
     */
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/Striped64.java

     * so.
     */
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (2)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_initialize_variables_in_session_init.mlir

        func.return %1 : tensor<100x50xf32>
      }
    }
    
    // -----
    
    // Test with empty initializers.
    module attributes {tf_saved_model.semantics, tf_saved_model.under_construction} {
    
      "tf_saved_model.session_initializer"() {initializers = []} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api.go

    type Instance struct {
    	TypeArgs *TypeList
    	Type     Type
    }
    
    // An Initializer describes a package-level variable, or a list of variables in case
    // of a multi-valued initialization expression, and the corresponding initialization
    // expression.
    type Initializer struct {
    	Lhs []*Var // var Lhs = Rhs
    	Rhs syntax.Expr
    }
    
    func (init *Initializer) String() string {
    	var buf strings.Builder
    	for i, lhs := range init.Lhs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. cmd/cloud-controller-manager/main.go

    	cloudConfig := config.ComponentConfig.KubeCloudShared.CloudProvider
    	// initialize cloud provider with the cloud provider name and config file provided
    	cloud, err := cloudprovider.InitCloudProvider(cloudConfig.Name, cloudConfig.CloudConfigFile)
    	if err != nil {
    		klog.Fatalf("Cloud provider could not be initialized: %v", err)
    	}
    	if cloud == nil {
    		klog.Fatalf("Cloud provider is nil")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/fake_session.h

          const tensorflow::thread::ThreadPoolOptions& thread_pool_options)
          override;
    
     private:
      void InitVariables();
      void BuildDeviceManager();
      void Initialize();
    
      std::unique_ptr<tensorflow::DeviceMgr> device_mgr_;
      bool initialized_ = false;
    };
    
    }  // namespace test_util
    }  // namespace TF
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/legalize-tf-variables.mlir

        // CHECK: "tfl.assign_variable"(%[[RESOURCE]], %[[CST]]) : (tensor<!tf_type.resource<tensor<1x10xf32>>>, tensor<1x10xf32>) -> ()
      }
    
      "tf_saved_model.session_initializer"() {initializers = [@init_all_tables]} : () -> ()
      // CHECK: "tf_saved_model.session_initializer"() <{initializers = [@init_all_tables]}> : () -> ()
    
      // CHECK-LABEL: serving_default
      func.func @serving_default(%arg0: tensor<1x10xf32> {tf_saved_model.index_path = ["x"]}) ->
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/go/types/api.go

    type Instance struct {
    	TypeArgs *TypeList
    	Type     Type
    }
    
    // An Initializer describes a package-level variable, or a list of variables in case
    // of a multi-valued initialization expression, and the corresponding initialization
    // expression.
    type Initializer struct {
    	Lhs []*Var // var Lhs = Rhs
    	Rhs ast.Expr
    }
    
    func (init *Initializer) String() string {
    	var buf bytes.Buffer
    	for i, lhs := range init.Lhs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

      if (!attr) return nullptr;
      return symbol_table.lookup(attr.getValue());
    }
    
    SessionInitializerOp GetSessionInitializerOp(mlir::ModuleOp op) {
      auto initializers = op.getOps<SessionInitializerOp>();
      if (initializers.empty()) return {};
      return *initializers.begin();
    }
    
    class OptimizeSessionInitializerPattern
        : public OpRewritePattern<SessionInitializerOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_test.cc

      // No initializer function matches the initializer type.
      EXPECT_THAT(init_func_op, IsNull());
    }
    
    TEST_F(TfSavedModelTest, GetInitializerFunctionsEmptyWhenNoInitFunctions) {
      constexpr StringRef kModuleOpStr = R"mlir(
        module attributes {tf_saved_model.semantics} {
          "tf_saved_model.session_initializer"() {initializers = []} : () -> ()
        }
      )mlir";
    
      Block block;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 01 05:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top