Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,081 for initialize_ (0.17 sec)

  1. cmd/erasure-sets_test.go

    	nDisks := 16 // Maximum disks.
    	var erasureDisks []string
    	for i := 0; i < nDisks; i++ {
    		// Do not attempt to create this path, the test validates
    		// so that newErasureSets initializes non existing paths
    		// and successfully returns initialized object layer.
    		disk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
    		erasureDisks = append(erasureDisks, disk)
    		defer os.RemoveAll(disk)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:21:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // Creates a pass that moves & merges initializer function's ops into the @main
    // function. This pass should be run on a valid tf_executor dialect. The control
    // output of the initializer function for non-variable resource initialization
    // will be passed on as a dependency to a new `tf.NoOp`, whose control output
    // will be merged into the main function's FetchOp. The initializer functions
    // will be removed.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. cmd/server-main.go

    		if globalIsDistErasure {
    			logger.Info("Waiting for all MinIO sub-systems to be initialize...")
    		}
    
    		// Upon success migrating the config, initialize all sub-systems
    		// if all sub-systems initialized successfully return right away
    		err := initConfigSubsystem(ctx, newObject)
    		if err == nil {
    			// All successful return.
    			if globalIsDistErasure {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/message/MessageFormatter.java

        }
    
        /**
         * 初期化します。
         */
        protected static synchronized void initialize() {
            if (!initialized) {
                DisposableUtil.add(() -> {
                    ResourceBundle.clearCache();
                    initialized = false;
                });
                initialized = true;
            }
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    func Add(name string, n int64) {
    	New(name).Add(n)
    }
    
    // New returns a counter with the given name.
    // New can be called in global initializers and will be compiled down to
    // linker-initialized data. That is, calling New to initialize a global
    // has no cost at program startup.
    //
    // See "Counter Naming" in the package doc for a description of counter naming
    // conventions.
    func New(name string) *Counter {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. cmd/iam.go

    	} else {
    		sys.store = &IAMStoreSys{newIAMEtcdStore(etcdClient, sys.usersSysType), &singleflight.Group{}}
    	}
    }
    
    // Initialized checks if IAM is initialized
    func (sys *IAMSys) Initialized() bool {
    	if sys == nil {
    		return false
    	}
    	sys.Lock()
    	defer sys.Unlock()
    	return sys.store != nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. test/fixedbugs/bug482.go

    // license that can be found in the LICENSE file.
    
    // Using the same name for a field in a composite literal and for a
    // global variable that depends on the variable being initialized
    // caused gccgo to erroneously report "variable initializer refers to
    // itself".
    
    package p
    
    type S struct {
    	F int
    }
    
    var V = S{F: 1}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 455 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/convert_session_initializer_to_function.mlir

    // RUN: tf-opt %s --tf-saved-model-convert-session-initializer-to-function --split-input-file | FileCheck %s
    
    // CHECK-LABEL: simple_initializer
    // CHECK-NOT: tf_saved_model.session_initializer
    // CHECK: func @session_initializer
    // CHECK: call @init1
    module @simple_initializer attributes {tf_saved_model.semantics} {
    "tf_saved_model.session_initializer"() {initializers = [@init1]} : () -> ()
    func.func @init1() attributes {tf_saved_model.exported_names = ["init1"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 02 16:24:00 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/temp.go

    // allocated temporary variable of type [len]elem. This variable is
    // initialized, and elem must not contain pointers.
    func stackBufAddr(len int64, elem *types.Type) *ir.AddrExpr {
    	if elem.HasPointers() {
    		base.FatalfAt(base.Pos, "%v has pointers", elem)
    	}
    	tmp := typecheck.TempAt(base.Pos, ir.CurFunc, types.NewArray(elem, len))
    	return typecheck.Expr(typecheck.NodAddr(tmp)).(*ir.AddrExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/fake_session.cc

    }  // namespace
    
    FakeSession::FakeSession() {
      // We don't initialize devices in constructor as it causes some
      // global initialization fiasco between tests and code in TF.
    }
    
    void FakeSession::Initialize() {
      if (initialized_) return;
      BuildDeviceManager();
      InitVariables();
      initialized_ = true;
    }
    
    void FakeSession::BuildDeviceManager() {
      auto device =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top