Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 117 for importing (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    It provides methods to retrieve paths to the project directory, build directory, settings file, and other important locations within the project's file structure.
    This class is particularly useful when you need to work with files in a build script or plugin in different project paths:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.reporting.GenerateBuildDashboard.getInputReports()> has arguments/return type org.gradle.api.reporting.GenerateBuildDashboard$ReportState that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (GenerateBuildDashboard.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top