Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for beforeSend (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle init --type java-library
    ----
    
    === Standardize and provision Gradle
    The built-in `gradle wrapper` task generates a script, `gradlew`, that invokes a declared version of Gradle, downloading it beforehand if necessary.
    
    ----
    $ gradle wrapper --gradle-version=8.1
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. src/runtime/export_test.go

    func ReadCPUStats() CPUStats {
    	return work.cpuStats
    }
    
    func ReadMetricsSlow(memStats *MemStats, samplesp unsafe.Pointer, len, cap int) {
    	stw := stopTheWorld(stwForTestReadMetricsSlow)
    
    	// Initialize the metrics beforehand because this could
    	// allocate and skew the stats.
    	metricsLock()
    	initMetrics()
    
    	systemstack(func() {
    		// Donate the racectx to g0. readMetricsLocked calls into the race detector
    		// via map access.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    +
    This can be replaced by an inter-project task dependency in the corresponding Gradle build script, as demonstrated in the following example that assumes the "web" project's "compile" task is requires "util" to be built beforehand:
    +
    ====
    include::sample[dir="snippets/antMigration/multiProject/kotlin",files="web/build.gradle.kts[]"]
    include::sample[dir="snippets/antMigration/multiProject/groovy",files="web/build.gradle[]"]
    ====
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top