Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 856 for Initialize (0.22 sec)

  1. internal/logger/target/http/http.go

    // AssignMigrateTarget assigns a target
    // which will eventually replace the current target.
    func (h *Target) AssignMigrateTarget(migrateTgt *Target) {
    	h.migrateTarget = migrateTgt
    }
    
    // Init validate and initialize the http target
    func (h *Target) Init(ctx context.Context) (err error) {
    	if h.config.QueueDir != "" {
    		return h.initQueueOnce.DoWithContext(ctx, h.initDiskStore)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. cmd/erasure-healing.go

    	if globalTrace.NumSubscribers(madmin.TraceHealing) > 0 {
    		startTime := time.Now()
    		defer func() {
    			healTrace(healingMetricObject, startTime, bucket, object, &opts, err, &result)
    		}()
    	}
    
    	// Initialize heal result object
    	result = madmin.HealResultItem{
    		Type:      madmin.HealItemObject,
    		Bucket:    bucket,
    		Object:    object,
    		VersionID: versionID,
    		DiskCount: len(storageDisks),
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    may also happen in unusual cases when using cgo or SWIG; in that case,
    the discussion here applies).  For -buildmode=c-archive the Go runtime
    will initialize signals at global constructor time.  For
    -buildmode=c-shared the Go runtime will initialize signals when the
    shared library is loaded.
    
    If the Go runtime sees an existing signal handler for the SIGCANCEL or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/runtime/os3_solaris.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
    }
    
    func miniterrno()
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. pkg/controller/volume/expand/expand_controller.go

    	// therefore the PVC objects in its store should be treated as immutable.
    	pvcLister  corelisters.PersistentVolumeClaimLister
    	pvcsSynced cache.InformerSynced
    
    	// volumePluginMgr used to initialize and fetch volume plugins
    	volumePluginMgr volume.VolumePluginMgr
    
    	// recorder is used to record events in the API server
    	recorder record.EventRecorder
    
    	operationGenerator operationexecutor.OperationGenerator
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                return Lifecycle.DEFAULT;
            }
    
            @Override
            public Collection<Phase> phases() {
                return asList(
                        phase("validate"),
                        phase("initialize"),
                        phase("generate-sources"),
                        phase("process-sources"),
                        phase("generate-resources"),
                        phase("process-resources"),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_mips64x.s

    TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
    	MOVW	sig+8(FP), R4
    	MOVV	info+16(FP), R5
    	MOVV	ctx+24(FP), R6
    	MOVV	fn+0(FP), R25
    	JAL	(R25)
    	RET
    
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME,$64
    	// initialize REGSB = PC&0xffffffff00000000
    	BGEZAL	R0, 1(PC)
    	SRLV	$32, R31, RSB
    	SLLV	$32, RSB
    
    	// this might be called in external code context,
    	// where g is not set.
    	MOVB	runtime·iscgo(SB), R1
    	BEQ	R1, 2(PC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy_test.go

    		DownstreamGrpcOptions: opts,
    	}, secOpts, envoy.ProxyConfig{TestOnly: true})
    	t.Cleanup(func() {
    		ia.Close()
    	})
    	proxy, err := initXdsProxy(ia)
    	if err != nil {
    		t.Fatalf("Failed to initialize xds proxy %v", err)
    	}
    	ia.xdsProxy = proxy
    
    	return proxy
    }
    
    func setDialOptions(p *XdsProxy, l *bufconn.Listener) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. cmd/metrics-v3-types.go

    		Descriptors:   descriptors,
    		bucketLoader:  loader,
    	}
    	mg.validate()
    	return mg
    }
    
    // AddExtraLabels - adds extra (constant) label KV pairs to the metrics group.
    // This is a helper to initialize the `ExtraLabels` field. The argument is a
    // list of ordered label name and value pairs.
    func (mg *MetricsGroup) AddExtraLabels(labels ...string) {
    	if len(labels)%2 != 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. hack/update-vendor.sh

        if [[ ! -f go.mod ]]; then
          kube::log::status "go.mod: initialize ${repo}" >&11
          rm -f Godeps/Godeps.json # remove before initializing, staging Godeps are not authoritative
          go mod init "k8s.io/${repo}"
          go mod edit -fmt
        fi
      )
    done
    
    if [[ ! -f go.mod ]]; then
      kube::log::status "go.mod: initialize k8s.io/kubernetes" >&11
      go mod init "k8s.io/kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top