Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 285 for isInitialized (0.25 sec)

  1. src/go/types/check.go

    	pos    positioner
    	format string
    	args   []any
    }
    
    // A Checker maintains the state of the type checker.
    // It must be created with [NewChecker].
    type Checker struct {
    	// package information
    	// (initialized by NewChecker, valid for the life-time of checker)
    	conf *Config
    	ctxt *Context // context for de-duplicating instances
    	fset *token.FileSet
    	pkg  *Package
    	*Info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/runtime/runtime.go

    // set by debug.SetCrashOutput (see #42888). If it is a valid fd (not
    // all ones), writeErr and related functions write to it in addition
    // to standard error.
    //
    // Initialized to -1 in schedinit.
    var crashFD atomic.Uintptr
    
    //go:linkname setCrashFD
    func setCrashFD(fd uintptr) uintptr {
    	// Don't change the crash FD if a crash is already in progress.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // Creates a pass that "unfreezes" ConstOps into variables. Each ConstOp's use
    // will be replaced by a VarHandleOp -> ReadVariableOp pattern. The newly
    // created variables will be initialized in the session initializer function via
    // AssignVariableOps.
    std::unique_ptr<OperationPass<ModuleOp>> CreateUnfreezeConstantsPass();
    
    // Creates a pass that duplicates constants that affect the shape of a tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. cmd/prepare-storage.go

    	// trying to pool FS backend into an Erasure set.
    	if err = checkFormatErasureValues(formatConfigs, storageDisks, setDriveCount); err != nil {
    		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)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/check.go

    	pos    poser
    	format string
    	args   []interface{}
    }
    
    // A Checker maintains the state of the type checker.
    // It must be created with NewChecker.
    type Checker struct {
    	// package information
    	// (initialized by NewChecker, valid for the life-time of checker)
    	conf *Config
    	ctxt *Context // context for de-duplicating instances
    	pkg  *Package
    	*Info
    	version goVersion              // accepted language version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. pkg/volume/volume.go

    	// ex. pods/{podUid}/{DefaultKubeletVolumeDevicesDirName}/{escapeQualifiedPluginName}/, {volumeName}
    	GetPodDeviceMapPath() (string, string)
    
    	// SupportsMetrics should return true if the MetricsProvider is
    	// initialized
    	SupportsMetrics() bool
    
    	// MetricsProvider embeds methods for exposing metrics (e.g.
    	// used, available space).
    	MetricsProvider
    }
    
    // MetricsProvider exposes metrics (e.g. used,available space) related to a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		"/readyz/poststarthook/wrapping-post-start-hook",
    		"/readyz/shutdown",
    	}
    	checkExpectedPathsAtRoot(server.URL, expectedPaths, t)
    
    	// wait for health (max-in-flight-filter is initialized asynchronously, can take a few milliseconds to initialize)
    	if err := wait.PollImmediate(100*time.Millisecond, wait.ForeverTestTimeout, func() (bool, error) {
    		// healthz checks are installed in PrepareRun
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/reflect/value.go

    	checkBucket uintptr
    }
    
    func (h *hiter) initialized() bool {
    	return h.t != nil
    }
    
    // A MapIter is an iterator for ranging over a map.
    // See [Value.MapRange].
    type MapIter struct {
    	m     Value
    	hiter hiter
    }
    
    // Key returns the key of iter's current map entry.
    func (iter *MapIter) Key() Value {
    	if !iter.hiter.initialized() {
    		panic("MapIter.Key called before Next")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/start.go

    // machine per time period.
    // The boolean indicates whether the token was acquired.
    func acquireUploadToken() bool {
    	if telemetry.Default.LocalDir() == "" {
    		// The telemetry dir wasn't initialized properly, probably because
    		// os.UserConfigDir did not complete successfully. In that case
    		// there are no counters to upload, so we should just do nothing.
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. cmd/bucket-object-lock.go

    		}
    		return "", objectlock.RetentionDate{}, legalHold, ErrNone
    	}
    	return mode, retainDate, legalHold, ErrNone
    }
    
    // NewBucketObjectLockSys returns initialized BucketObjectLockSys
    func NewBucketObjectLockSys() *BucketObjectLockSys {
    	return &BucketObjectLockSys{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top