Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 856 for Initialize (0.33 sec)

  1. src/runtime/sys_linux_s390x.s

    	SYSCALL $SYS_clone
    
    	// In parent, return.
    	CMPBEQ	R2, $0, 3(PC)
    	MOVW	R2, ret+40(FP)
    	RET
    
    	// In child, on new stack.
    	// initialize essential registers
    	XOR	R0, R0
    	MOVD	-32(R15), R7
    	CMP	R7, $1234
    	BEQ	2(PC)
    	MOVD	R0, 0(R0)
    
    	// Initialize m->procid to Linux tid
    	SYSCALL $SYS_gettid
    
    	MOVD	-24(R15), R9        // fn
    	MOVD	-16(R15), R8        // g
    	MOVD	-8(R15), R7         // m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. cmd/erasure-sets.go

    // Must be bigger than defaultMonitorNewDiskInterval.
    const defaultMonitorConnectEndpointInterval = defaultMonitorNewDiskInterval + time.Second*5
    
    // Initialize new set of erasure coded sets.
    func newErasureSets(ctx context.Context, endpoints PoolEndpoints, storageDisks []StorageAPI, format *formatErasureV3, defaultParityCount, poolIdx int) (*erasureSets, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

            saveToken();
            return asHtml(path_AdminScheduler_AdminSchedulerEditJsp).useForm(CreateForm.class, op -> {
                op.setup(scheduledJobForm -> {
                    scheduledJobForm.initialize();
                    scheduledJobForm.crudMode = CrudMode.CREATE;
                    scheduledJobForm.jobLogging = Constants.ON;
                    scheduledJobForm.crawler = Constants.ON;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	if err != nil {
    		logger.Error(err, "PersistentVolumeController can't initialize caches")
    		return
    	}
    	for _, claim := range claimList {
    		if _, err = ctrl.storeClaimUpdate(logger, claim.DeepCopy()); err != nil {
    			logger.Error(err, "Error updating claim cache")
    		}
    	}
    	logger.V(4).Info("Controller initialized")
    }
    
    // enqueueWork adds volume or claim to given work queue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  5. cmd/tier.go

    	defer config.RUnlock()
    	data := make([]byte, 4, config.Msgsize()+4)
    
    	// Initialize the header.
    	binary.LittleEndian.PutUint16(data[0:2], tierConfigFormat)
    	binary.LittleEndian.PutUint16(data[2:4], tierConfigVersion)
    
    	// Marshal the tier config
    	return config.MarshalMsg(data)
    }
    
    // getDriver returns a warmBackend interface object initialized with remote tier config matching tierName
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        protected long searchStoreInterval = 1; // min
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            fessConfig = ComponentUtil.getFessConfig();
            split(fessConfig.getSuggestFieldContents(), ",")
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    	"github.com/gogo/protobuf/proto"
    	dto "github.com/prometheus/client_model/go"
    	"github.com/spf13/pflag"
    
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    )
    
    // Initialize the prometheus instrumentation and client related flags.
    var (
    	listenAddress        string
    	metricsPath          string
    	etcdVersionScrapeURI string
    	etcdMetricsScrapeURI string
    	scrapeTimeout        time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. src/runtime/os_freebsd.go

    	return int(n)
    }
    
    func goenvs() {
    	goenvs_unix()
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the parent thread (main thread in case of bootstrap), can allocate memory.
    func mpreinit(mp *m) {
    	mp.gsignal = malg(32 * 1024)
    	mp.gsignal.m = mp
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_tpu_device.cc

      return absl::OkStatus();
    }
    
    // Check if TPU has been initialized. TPU initialization is not necessary
    // for 1x1.
    Status CheckIfTPUInitialized() {
      auto* tpu_platform = tpu::TpuPlatformInterface::GetRegisteredPlatform();
      if (!tpu_platform->Initialized()) {
        return errors::FailedPrecondition(
            "The TPU system has not been initialized.");
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      fetch(url.toString(), {method: method})
          .then((response) => { done(response.ok); })
          .catch((error) => { done(false); });
    }
    
    // Initialize handlers for saving/loading configurations.
    function initConfigManager() {
      'use strict';
    
      // Initialize various elements.
      function elem(id) {
        const result = document.getElementById(id);
        if (!result) console.warn('element ' + id + ' not found');
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top