Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 546 for Initialize (0.14 sec)

  1. pkg/kubelet/cm/container_manager_linux.go

    	// Initialize DRA manager
    	if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.DynamicResourceAllocation) {
    		klog.InfoS("Creating Dynamic Resource Allocation (DRA) manager")
    		cm.draManager, err = dra.NewManagerImpl(kubeClient, nodeConfig.KubeletRootDir, nodeConfig.NodeName)
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	// Initialize CPU manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected org.codelibs.spnego.SpnegoAuthenticator authenticator = null;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            ComponentUtil.getSsoManager().register(this);
        }
    
        protected synchronized org.codelibs.spnego.SpnegoAuthenticator getAuthenticator() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. cmd/prepare-storage.go

    		return nil, err
    	}
    
    	// All disks report unformatted we should initialized everyone.
    	if shouldInitErasureDisks(sErrs) && firstDisk {
    		logger.Info("Formatting %s pool, %v set(s), %v drives per set.",
    			humanize.Ordinal(poolCount), setCount, setDriveCount)
    
    		// Initialize erasure code format on disks
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

        }
    
        public void init() {
            if (initialized) {
                return;
            }
            initialized = true;
            initialize(initialSettings);
            new AnalyzerSettings(client, this, settingsIndexName).init();
        }
    
        private void initialize(final Map<String, Object> initialSettings) {
            boolean doIndexCreate = false;
            boolean doCreate = false;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

      // For each node in the graph, we should initialize an object of the
      // corresponding type. For objects that depend on the initialization of other
      // objects (like functions which capture resources), we will initialize them
      // later.
      PartiallyRevivedObjects partially_revived_objects;
      TF_RETURN_IF_ERROR(internal::PartiallyReviveSavedModelObjects(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                // query matches on all documents.
                form.q = Constants.MATCHES_ALL_QUERY;
            }
            final WebRenderData renderData = new WebRenderData();
            form.initialize();
            request.setAttribute(Constants.SEARCH_LOG_ACCESS_TYPE, Constants.SEARCH_LOG_ACCESS_TYPE_ADMIN);
            try {
                searchHelper.search(form, renderData, getUserBean());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/range_allocator_test.go

    			expectedAllocatedCIDR: nil,
    			ctrlCreateFail:        true,
    		},
    	}
    
    	// test function
    	tCtx := ktesting.Init(t)
    	for _, tc := range testCases {
    		t.Run(tc.description, func(t *testing.T) {
    			// Initialize the range allocator.
    			fakeNodeInformer := test.FakeNodeInformer(tc.fakeNodeHandler)
    			nodeList, _ := tc.fakeNodeHandler.List(tCtx, metav1.ListOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. cmd/format-erasure.go

    // loadFormatErasureAll - load all format config from all input disks in parallel.
    func loadFormatErasureAll(storageDisks []StorageAPI, heal bool) ([]*formatErasureV3, []error) {
    	// Initialize list of errors.
    	g := errgroup.WithNErrs(len(storageDisks))
    
    	// Initialize format configs.
    	formats := make([]*formatErasureV3, len(storageDisks))
    
    	// Load format from each disk in parallel
    	for index := range storageDisks {
    		index := index
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

                    return lock
            }
    
            then:
            1 * initAction.requiresInitialization(lock) >> true
            1 * lock.writeFile(_) >> { Runnable r -> r.run() }
            1 * initAction.initialize(lock)
    
            then:
            1 * action.get() >> { contendedAction.accept(signal) }
    
            then:
            1 * lock.close()
            1 * signal.trigger()
            0 * _
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	}()
    
    	// In normal circumstances, "websocket.Server#ServeHTTP" calls "initialize" which closes
    	// "conn.ready" and then blocks until serving is complete.
    	select {
    	case <-conn.ready:
    		klog.V(8).Infof("websocket server initialized--serving")
    	case <-serveHTTPComplete:
    		// websocket server returned before completing initialization; cleanup and return error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top