Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for isInitialized (0.25 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

            thread_can_start_(thread_can_start),
            finished_(false) {
        ThreadWithParamBase* const base = this;
        // The thread can be created only after all fields except thread_
        // have been initialized.
        GTEST_CHECK_POSIX_SUCCESS_(
            pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base));
      }
      ~ThreadWithParam() { Join(); }
    
      void Join() {
        if (!finished_) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	// NOTE: block is only used if value is BlockStart.ID or BlockEnd.ID.
    	// Otherwise, it is ignored.
    	GetPC func(block, value ID) int64
    }
    
    type BlockDebug struct {
    	// State at the start and end of the block. These are initialized,
    	// and updated from new information that flows on back edges.
    	startState, endState abt.T
    	// Use these to avoid excess work in the merge. If none of the
    	// predecessors has changed since the last check, the old answer is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    			} else {
    				sysNoHugePage(unsafe.Pointer(l2), unsafe.Sizeof(*l2))
    			}
    			atomic.StorepNoWB(unsafe.Pointer(&h.arenas[ri.l1()]), unsafe.Pointer(l2))
    		}
    
    		if l2[ri.l2()] != nil {
    			throw("arena already initialized")
    		}
    		var r *heapArena
    		r = (*heapArena)(h.heapArenaAlloc.alloc(unsafe.Sizeof(*r), goarch.PtrSize, &memstats.gcMiscSys))
    		if r == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

            thread_can_start_(thread_can_start),
            finished_(false) {
        ThreadWithParamBase* const base = this;
        // The thread can be created only after all fields except thread_
        // have been initialized.
        GTEST_CHECK_POSIX_SUCCESS_(
            pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base));
      }
      ~ThreadWithParam() { Join(); }
    
      void Join() {
        if (!finished_) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_test.cc

      // 1. Create a variable on `remote_device`, using `ctx_0`.
      TFE_TensorHandle* handle_0 =
          CreateVariable(ctx_0, 1.2, remote_device, /*variable_name=*/"var2");
    
      // 2. Wait for `var2` to be created and initialized on the worker.
      TF_Status* status = TF_NewStatus();
      TFE_ContextAsyncWait(ctx_0, status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteStatus(status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool.go

    	}
    
    	z.decommissionCancelers = make([]context.CancelFunc, len(z.serverPools))
    
    	// Initialize the pool meta, but set it to not save.
    	// When z.Init below has loaded the poolmeta will be initialized,
    	// and allowed to save.
    	z.poolMeta = newPoolMeta(z, poolMeta{})
    	z.poolMeta.dontSave = true
    
    	bootstrapTrace("newSharedLock", func() {
    		globalLeaderLock = newSharedLock(GlobalContext, z, "leader.lock")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

                    this.in.close();
                    this.socket.close();
                    log.trace("Socket closed");
                }
                else {
                    log.trace("Not yet initialized");
                }
            }
            catch ( Exception e ) {
                log.debug("Exception in disconnect", e);
            }
            finally {
                this.socket = null;
                this.digest = null;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // For postfix case, the last argument is the operation call invoked on a synthetic local variable `<unary>`. This local
                    // variable is initialized by calling the `get` function.
                    val operationCall = lastArg as? FirFunctionCall ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  9. src/regexp/testdata/testregex.c

    T("    field 3 string, or NULL if REG_NOSUB is in effect and success\n");
    T("    is expected. BADPAT is acceptable in place of any regcomp(3)\n");
    T("    error code. The match[] array is initialized to (-2,-2) before\n");
    T("    each test. All array elements from 0 to nmatch-1 must be specified\n");
    T("    in the outcome. Unspecified endpoints (offset -1) are denoted by ?.\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            ModelNode.State.Discovered      | null
            ModelNode.State.Created         | "created"
            ModelNode.State.DefaultsApplied | ModelActionRole.Defaults.name()
            ModelNode.State.Initialized     | ModelActionRole.Initialize.name()
            ModelNode.State.Mutated         | ModelActionRole.Mutate.name()
            ModelNode.State.Finalized       | ModelActionRole.Finalize.name()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
Back to top