Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for Initialize (0.17 sec)

  1. cmd/erasure-healing_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer obj.Shutdown(context.Background())
    
    	// initialize the server and obtain the credentials and root.
    	// credentials are necessary to sign the HTTP request.
    	if err = newTestConfig(globalMinioDefaultRegion, obj); err != nil {
    		t.Fatalf("Unable to initialize server config. %s", err)
    	}
    
    	defer removeRoots(fsDirs)
    
    	z := obj.(*erasureServerPools)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    	// WriteGoMod explicitly.
    	ExplicitWriteGoMod bool
    )
    
    // Variables set in Init.
    var (
    	initialized bool
    
    	// These are primarily used to initialize the MainModules, and should be
    	// eventually superseded by them but are still used in cases where the module
    	// roots are required but MainModules hasn't been initialized yet. Set to
    	// the modRoots of the main modules.
    	// modRoots != nil implies len(modRoots) > 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    		}
    	}
    	return s
    }
    
    // initSpan initializes a blank span s which will represent the range
    // [base, base+npages*pageSize). typ is the type of span being allocated.
    func (h *mheap) initSpan(s *mspan, typ spanAllocType, spanclass spanClass, base, npages uintptr) {
    	// At this point, both s != nil and base != 0, and the heap
    	// lock is no longer held. Initialize the span.
    	s.init(base, npages)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    		}
    		f.pluginsMap[name] = p
    
    		f.fillEnqueueExtensions(p)
    	}
    
    	// initialize plugins per individual extension points
    	for _, e := range f.getExtensionPoints(profile.Plugins) {
    		if err := updatePluginList(e.slicePtr, *e.plugins, f.pluginsMap); err != nil {
    			return nil, err
    		}
    	}
    
    	// initialize multiPoint plugins to their expanded extension points
    	if len(profile.Plugins.MultiPoint.Enabled) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // `CreateClusters` do most of the heavy lifting.
    
      // Initializes some internal data structures.
      //
      // If this returns false then Initialize exited early (either because there is
      // nothing to do or we saw a graph that we can't handle) and not all the
      // fields in this MarkForCompilationPassImpl instance are set up.
      absl::StatusOr<bool> Initialize();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			defer wg.Done()
    			w, err := cacher.Watch(ctx, "pods", storage.ListOptions{ResourceVersion: "1", Predicate: storage.Everything})
    			if err != nil {
    				// Watch failed to initialize (this most probably means that cacher
    				// already moved back to Pending state before watch initialized.
    				// Ignore this case.
    				return
    			}
    			defer w.Stop()
    
    			prevRV := -1
    			for event := range w.ResultChan() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        extern ::testing::internal::MutexBase mutex
    
    // Defines and statically (i.e. at link time) initializes a static mutex.
    // The initialization list here does not explicitly initialize each field,
    // instead relying on default initialization for the unspecified fields. In
    // particular, the owner_ field (a pthread_t) is not explicitly initialized.
    // This allows initialization to work whether pthread_t is a scalar or struct.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        extern ::testing::internal::MutexBase mutex
    
    // Defines and statically (i.e. at link time) initializes a static mutex.
    // The initialization list here does not explicitly initialize each field,
    // instead relying on default initialization for the unspecified fields. In
    // particular, the owner_ field (a pthread_t) is not explicitly initialized.
    // This allows initialization to work whether pthread_t is a scalar or struct.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	}
    
    	// Ensure that the stores above that initialize x to
    	// type-safe memory and set the heap bits occur before
    	// the caller can make x observable to the garbage
    	// collector. Otherwise, on weakly ordered machines,
    	// the garbage collector could follow a pointer to x,
    	// but see uninitialized memory or stale heap bits.
    	publicationBarrier()
    	// As x and the heap bits are initialized, update
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_function_test.cc

      const char* func_name_ = "MyFunc";
      const char* func_node_name_ = "MyFunc_0";
      TF_Status* s_;
      TF_Graph* func_graph_;
      TF_Graph* host_graph_;
      TF_Function* func_;
    
      // Workaround for not being able to initialize empty map using {}
      std::unordered_set<string> empty_;
    };
    
    TEST_F(CApiFunctionTest, OneOp_ZeroInputs_OneOutput) {
      /*
       *                constant
       *                   |
       *                   v
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
Back to top