Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 114 for importing (0.16 sec)

  1. src/runtime/mprof.go

    	})
    	if nstk < len(prof.stack) {
    		prof.stack[nstk] = 0
    	}
    }
    
    func (prof *mLockProfile) store() {
    	// Report any contention we experience within this function as "lost"; it's
    	// important that the act of reporting a contention event not lead to a
    	// reportable contention event. This also means we can use prof.stack
    	// without copying, since it won't change during this function.
    	mp := acquirem()
    	prof.disabled = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	// because all committed memory is charged to the process,
    	// even if it's not touched. Hence, for processes with small
    	// heaps, the mapped arena space needs to be commensurate.
    	// This is particularly important with the race detector,
    	// since it significantly amplifies the cost of committed
    	// memory.
    	heapArenaBytes = 1 << logHeapArenaBytes
    
    	heapArenaWords = heapArenaBytes / goarch.PtrSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Previously, `outputLocation` returned a value of type `Provider<? extends FileSystemLocation>`.
    
    This change makes the Report API more internally consistent, and allows for more idiomatic configuration of reporting tasks.
    
    The former, now `@Deprecated` usage:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. src/testing/testing.go

    		// associated with a specific test (and, specifically, that the next output
    		// is *not* associated with that test).
    		//
    		// Moreover, if c.output is non-empty it is important that this write be
    		// atomic with respect to the output of other tests, so that we don't end up
    		// with confusing '=== NAME' lines in the middle of our '--- PASS' block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // when you downcast, you should use this macro.  In debug mode, we
    // use dynamic_cast<> to double-check the downcast is legal (we die
    // if it's not).  In normal mode, we do the efficient static_cast<>
    // instead.  Thus, it's important to test in debug mode to make sure
    // the cast is legal!
    //    This is the only place in the code we should use dynamic_cast<>.
    // In particular, you SHOULDN'T be using dynamic_cast<> in order to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    .Output of **`gradle dependentComponents`**
    ----
    > gradle dependentComponents
    include::{snippetsPath}/native-binaries/cunit/tests/dependentComponentsReport.out[]
    ----
    
    NOTE: See link:{groovyDslPath}/org.gradle.api.reporting.dependents.DependentComponentsReport.html[DependentComponentsReport] API documentation for more details.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message TracerDatadogConfig {
      // Address in host:port format for reporting trace data to the Datadog agent.
      string address = 1;
    }
    
    // Configuration for the lightstep tracing service.
    message TracerLightStepConfig {
      // Sets the lightstep satellite pool address in host:port format for reporting trace data.
      string address = 1;
    
      // Sets the lightstep access token.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    // there are no remaining workers. Specifically, when
    //
    //	work.nwait == work.nproc && !gcMarkWorkAvailable(p)
    //
    // The calling context must be preemptible.
    //
    // Flushing local work is important because idle Ps may have local
    // work queued. This is the only way to make that work visible and
    // drive GC to completion.
    //
    // It is explicitly okay to have write barriers in this function. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    	}
    }
    
    // buildUserGroupMemberships - builds the memberships map. IMPORTANT:
    // Assumes that c.Lock is held by caller.
    func (c *iamCache) buildUserGroupMemberships() {
    	for group, gi := range c.iamGroupsMap {
    		c.updateGroupMembershipsMap(group, &gi)
    	}
    }
    
    // updateGroupMembershipsMap - updates the memberships map for a
    // group. IMPORTANT: Assumes c.Lock() is held by caller.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    		// is in debt. Think carefully about the signs below.
    		if scanBytes+gp.gcAssistBytes >= 0 {
    			// Satisfy this entire assist debt.
    			scanBytes += gp.gcAssistBytes
    			gp.gcAssistBytes = 0
    			// It's important that we *not* put gp in
    			// runnext. Otherwise, it's possible for user
    			// code to exploit the GC worker's high
    			// scheduler priority to get itself always run
    			// before other goroutines and always in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top