Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 580 for isInitialized (0.43 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    func Add(name string, n int64) {
    	New(name).Add(n)
    }
    
    // New returns a counter with the given name.
    // New can be called in global initializers and will be compiled down to
    // linker-initialized data. That is, calling New to initialize a global
    // has no cost at program startup.
    //
    // See "Counter Naming" in the package doc for a description of counter naming
    // conventions.
    func New(name string) *Counter {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

      private val messageBuffer = Buffer()
    
      /** The [Buffer] of [sink]. Write to this and then flush/emit [sink]. */
      private val sinkBuffer: Buffer = sink.buffer
      private var writerClosed = false
    
      /** Lazily initialized on first use. */
      private var messageDeflater: MessageDeflater? = null
    
      // Masks are only a concern for client writers.
      private val maskKey: ByteArray? = if (isClient) ByteArray(4) else null
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. tensorflow/c/kernels/histogram_summary_op.cc

        CHECK_EQ(TF_OK, TF_GetCode(status))
            << "Error while registering Histogram Summmary kernel";
      }
      TF_DeleteStatus(status);
    }
    
    // A dummy static variable initialized by a lambda whose side-effect is to
    // register the Histogram Summary kernel.
    TF_ATTRIBUTE_UNUSED static bool IsHistogramSummaryOpKernelRegistered = []() {
      if (SHOULD_REGISTER_OP_KERNEL("HistogramSummary")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. pkg/controller/resourcequota/resource_quota_monitor.go

    type QuotaMonitor struct {
    	// each monitor list/watches a resource and determines if we should replenish quota
    	monitors    monitors
    	monitorLock sync.RWMutex
    	// informersStarted is closed after all the controllers have been initialized and are running.
    	// After that it is safe to start them here, before that it is not.
    	informersStarted <-chan struct{}
    
    	// stopCh drives shutdown. When a reception from it unblocks, monitors will shut down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. test/typeparam/list2.go

    }
    
    // Init initializes or clears list l.
    func (l *_List[T]) Init() *_List[T] {
    	l.root.next = &l.root
    	l.root.prev = &l.root
    	l.len = 0
    	return l
    }
    
    // New returns an initialized list.
    func _New[T any]() *_List[T] { return new(_List[T]).Init() }
    
    // Len returns the number of elements of list l.
    // The complexity is O(1).
    func (l *_List[_]) Len() int { return l.len }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/doc.go

    // More subtly confusing is using the wrong sorting order or casing
    // algorithm for a certain language.
    //
    // All the packages in x/text that provide locale-specific services
    // (e.g. collate, cases) should be initialized with the tag that was
    // obtained at the start of an interaction with the user.
    //
    // Note that Tag that is returned by Match and MatchString may differ from any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/link/doc.go

    	-X importpath.name=value
    		Set the value of the string variable in importpath named name to value.
    		This is only effective if the variable is declared in the source code either uninitialized
    		or initialized to a constant string expression. -X will not work if the initializer makes
    		a function call or refers to other variables.
    		Note that before Go 1.5 this option took two separate arguments.
    	-asan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. gorm.go

    }
    
    // Session session config when create session with Session() method
    type Session struct {
    	DryRun                   bool
    	PrepareStmt              bool
    	NewDB                    bool
    	Initialized              bool
    	SkipHooks                bool
    	SkipDefaultTransaction   bool
    	DisableNestedTransaction bool
    	AllowGlobalUpdate        bool
    	FullSaveAssociations     bool
    	QueryFields              bool
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Aug 20 11:46:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/cpu_x86.go

    		{Name: "ssse3", Feature: &X86.HasSSSE3},
    
    		// These capabilities should always be enabled on amd64:
    		{Name: "sse2", Feature: &X86.HasSSE2, Required: runtime.GOARCH == "amd64"},
    	}
    }
    
    func archInit() {
    
    	Initialized = true
    
    	maxID, _, _, _ := cpuid(0, 0)
    
    	if maxID < 1 {
    		return
    	}
    
    	_, _, ecx1, edx1 := cpuid(1, 0)
    	X86.HasSSE2 = isSet(26, edx1)
    
    	X86.HasSSE3 = isSet(0, ecx1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. tensorflow/c/kernels/summary_op.cc

        CHECK_EQ(TF_OK, TF_GetCode(status))
            << "Error while registering Scalar Summmary kernel";
      }
      TF_DeleteStatus(status);
    }
    
    // A dummy static variable initialized by a lambda whose side-effect is to
    // register the ScalarSummary kernel.
    TF_ATTRIBUTE_UNUSED bool IsScalarSummaryOpKernelRegistered = []() {
      if (SHOULD_REGISTER_OP_KERNEL("ScalarSummary")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top