Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 580 for isInitialized (0.22 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionStrategyFactory.java

    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.typeconversion.NotationParser;
    import org.gradle.vcs.internal.VcsMappingsStore;
    
    import javax.inject.Inject;
    
    /**
     * Creates fully initialized {@link ResolutionStrategyInternal} instances.
     */
    public class ResolutionStrategyFactory implements Factory<ResolutionStrategyInternal> {
    
        private final Instantiator instantiator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/runtime/cgo/libcgo.h

     */
    extern uintptr_t *_cgo_pthread_key_created;
    
    /*
     * Creates the new operating system thread (OS, arch dependent).
     */
    void _cgo_sys_thread_start(ThreadStart *ts);
    
    /*
     * Waits for the Go runtime to be initialized (OS dependent).
     * If runtime.SetCgoTraceback is used to set a context function,
     * calls the context function and returns the context value.
     */
    uintptr_t _cgo_wait_runtime_init_done(void);
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_matcher.go

    type matcher struct {
    	Matcher *matching.Matcher
    }
    
    func NewPolicyMatcher(m *matching.Matcher) PolicyMatcher {
    	return &matcher{
    		Matcher: m,
    	}
    }
    
    // ValidateInitialization checks if Matcher is initialized.
    func (c *matcher) ValidateInitialization() error {
    	return c.Matcher.ValidateInitialization()
    }
    
    // DefinitionMatches returns whether this ValidatingAdmissionPolicy matches the provided admission resource request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. cmd/peer-s3-client.go

    }
    
    // client to talk to peer Nodes.
    type remotePeerS3Client struct {
    	node  Node
    	pools []int
    
    	// Function that returns the grid connection for this peer when initialized.
    	// Will return nil if the grid connection is not initialized yet.
    	gridConn func() *grid.Connection
    }
    
    // S3PeerSys - S3 peer call system.
    type S3PeerSys struct {
    	peerClients []peerS3Client // Excludes self
    	poolsCount  int
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.h

    // node_def (eager mode). Note that this class owns the decomposition library.
    class TFRDecomposeContext {
     public:
      // The entry function to get a decompose context. All the required passes have
      // been initialized.
      static absl::StatusOr<std::unique_ptr<TFRDecomposeContext>> Get(
          mlir::MLIRContext* mlir_ctx);
    
      // Constructor of the decompose context. To share the decompose library, the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 11:12:54 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. cmd/signature-v4-utils.go

    func checkKeyValid(r *http.Request, accessKey string) (auth.Credentials, bool, APIErrorCode) {
    	cred := globalActiveCred
    	if cred.AccessKey != accessKey {
    		if !globalIAMSys.Initialized() {
    			// Check if server has initialized, then only proceed
    			// to check for IAM users otherwise its okay for clients
    			// to retry with 503 errors when server is coming up.
    			return auth.Credentials{}, false, ErrIAMNotInitialized
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    }
    
    // setMinimalFeatures fakes the minimal ARM64 features expected by
    // TestARM64minimalFeatures.
    func setMinimalFeatures() {
    	ARM64.HasASIMD = true
    	ARM64.HasFP = true
    }
    
    func readARM64Registers() {
    	Initialized = true
    
    	parseARM64SystemRegisters(getisar0(), getisar1(), getpfr0())
    }
    
    func parseARM64SystemRegisters(isar0, isar1, pfr0 uint64) {
    	// ID_AA64ISAR0_EL1
    	switch extractBits(isar0, 4, 7) {
    	case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/constdecl.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package constdecl
    
    import "math"
    import "unsafe"
    
    var v int
    
    // Const decls must be initialized by constants.
    const _ = v /* ERROR "not constant" */
    const _ = math /* ERROR "not constant" */ .Sin(0)
    const _ = int /* ERROR "not an expression" */
    
    func _() {
    	const _ = v /* ERROR "not constant" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.cc

      const float collected_lower_bound =
          CalculateLowerBound(min, collected_bin_width);
      const float collected_upper_bound =
          std::ceil(max / collected_bin_width) * collected_bin_width;
    
      // When histogram is not initialized.
      if (hist_freq_.empty()) {
        bin_width_ = collected_bin_width;
        lower_bound_ = collected_lower_bound;
      }
    
      const auto [lower_idx, upper_idx] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/hash/adler32/adler32.go

    //
    // It is defined in RFC 1950:
    //
    //	Adler-32 is composed of two sums accumulated per byte: s1 is
    //	the sum of all bytes, s2 is the sum of all s1 values. Both sums
    //	are done modulo 65521. s1 is initialized to 1, s2 to zero.  The
    //	Adler-32 checksum is stored as s2*65536 + s1 in most-
    //	significant-byte first (network) order.
    package adler32
    
    import (
    	"errors"
    	"hash"
    	"internal/byteorder"
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top