Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 142 for Initialize (0.23 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            }
        }
    
        @PostConstruct
        public void open() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            String httpAddress = SystemUtil.getSearchEngineHttpAddress();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. src/time/time.go

    //
    //go:linkname runtimeNano runtime.nanotime
    func runtimeNano() int64
    
    // Monotonic times are reported as offsets from startNano.
    // We initialize startNano to runtimeNano() - 1 so that on systems where
    // monotonic time resolution is fairly low (e.g. Windows 2008
    // which appears to have a default resolution of 15ms),
    // we avoid ever reporting a monotonic time of 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    		genericadmissioninitializer.New(kubeClient, nil, informerFactory, nil, nil, stopCh, nil),
    		controlplaneadmission.NewPluginInitializer(quotaConfiguration, nil),
    	}
    	initializers.Initialize(handler)
    
    	return handler, admission.ValidateInitialization(handler)
    }
    
    // TestAdmissionIgnoresDelete verifies that the admission controller ignores delete operations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    	}
    }
    
    // newType returns a new Type of the specified kind.
    func newType(et Kind) *Type {
    	t := &Type{
    		kind:  et,
    		width: BADWIDTH,
    	}
    	t.underlying = t
    	// TODO(josharian): lazily initialize some of these?
    	switch t.kind {
    	case TMAP:
    		t.extra = new(Map)
    	case TFORW:
    		t.extra = new(Forward)
    	case TFUNC:
    		t.extra = new(Func)
    	case TSTRUCT:
    		t.extra = new(Struct)
    	case TINTER:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. src/runtime/map.go

    //
    //go:linkname makemap
    func makemap(t *maptype, hint int, h *hmap) *hmap {
    	mem, overflow := math.MulUintptr(uintptr(hint), t.Bucket.Size_)
    	if overflow || mem > maxAlloc {
    		hint = 0
    	}
    
    	// initialize Hmap
    	if h == nil {
    		h = new(hmap)
    	}
    	h.hash0 = uint32(rand())
    
    	// Find the size parameter B which will hold the requested # of elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    }
    
    func gcinit() {
    	if unsafe.Sizeof(workbuf{}) != _WorkbufSize {
    		throw("size of Workbuf is suboptimal")
    	}
    	// No sweep on the first cycle.
    	sweep.active.state.Store(sweepDrainedMask)
    
    	// Initialize GC pacer state.
    	// Use the environment variable GOGC for the initial gcPercent value.
    	// Use the environment variable GOMEMLIMIT for the initial memoryLimit value.
    	gcController.init(readGOGC(), readGOMEMLIMIT())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    }
    
    def TF_ConfigureAndInitializeGlobalTPUOp : TF_Op<"ConfigureAndInitializeGlobalTPU", []> {
      let summary = [{
    An op that initialize the TPU system in a multi-client set up.
      }];
    
      let description = [{
    Initializes global TPU system for mutli-client execution.
    
    This op does the work of both ConfigureDistributedTpuOp and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	if !pl.enabled {
    		return nil, framework.NewStatus(framework.Skip)
    	}
    	logger := klog.FromContext(ctx)
    
    	// If the pod does not reference any claim, we don't need to do
    	// anything for it. We just initialize an empty state to record that
    	// observation for the other functions. This gets updated below
    	// if we get that far.
    	s := &stateData{}
    	state.Write(stateKey, s)
    
    	claims, err := pl.podResourceClaims(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	status.pendingUpdate = nil
    	select {
    	case <-p.podUpdates[podUID]:
    		// ensure the pod update channel is empty (it is only ever written to under lock)
    	default:
    	}
    
    	// initialize a context for the worker if one does not exist
    	if status.ctx == nil || status.ctx.Err() == context.Canceled {
    		status.ctx, status.cancelFn = context.WithCancel(context.Background())
    	}
    	ctx = status.ctx
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. cmd/object-api-listobjects_test.go

    					t.Errorf("Test %d: %s: Expected prefix name to be \"%s\", but found \"%s\" instead", i+1, instanceType, testCase.result.Prefixes[j], foundPrefixes[j])
    				}
    			}
    		})
    	}
    }
    
    // Initialize FS backend for the benchmark.
    func initFSObjectsB(disk string, t *testing.B) (obj ObjectLayer) {
    	obj, _, err := initObjectLayer(context.Background(), mustGetPoolEndpoints(0, disk))
    	if err != nil {
    		t.Fatal(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
Back to top