Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for need (0.32 sec)

  1. doc/next/9-todo.md

    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    CL 561935 - crypto CL that used purego tag and mentioned accepted-but-not-implemented proposal https://go.dev/issue/23172 to document purego tag; doesn't need a release note
    CL 568340 - fixed a spurious race in time.Ticker.Reset (added via accepted proposal https://go.dev/issue/33184), doesn't seem to need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/core-runtime/instrumentation-declarations/build.gradle.kts

    dependencies {
        // All dependencies should be compileOnly, since this project is added also to worker classpath, so we don't pollute it.
        // If we need some dependency also at runtime we need to build a separate classpath and add it to :launcher project or :distributions-core project directly.
        compileOnly(project(":core"))
        compileOnly(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/build-init/build.gradle.kts

        implementation(libs.commonsLang)
        implementation(libs.maven3SettingsBuilder)
        implementation(libs.maven3Model)
        implementation(libs.slf4jApi)
        implementation(libs.plexusUtils)
    
        // We need to handle the Maven dependencies specially otherwise it breaks some cross version tests
        // TODO Figure out why and fix it - Move the two deps below to implementation and api and run ProjectTheExtensionCrossVersionSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

    }
    
    gradlebuildJava.usedInWorkers()
    
    description = """JVM-specific test infrastructure, including support for bootstrapping and configuring test workers
    and executing tests.
    Few projects should need to depend on this module directly. Most external interactions with this module are through the
    various implementations of WorkerTestClassProcessorFactory.
    """
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      // TODO(b/165919229): This code will need changing if/when we port to a
      // big-endian platform.
      memcpy(*buffer, &num_strings, sizeof(int32_t));
    
      // Set offset of strings.
      int32_t start = sizeof(int32_t) * (num_strings + 2);
      for (size_t i = 0; i < offset_.size(); i++) {
        // TODO(b/165919229): This code will need changing if/when we port to a
        // big-endian platform.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/build.gradle.kts

    gradlebuildJava.usedInWorkers()
    
    dependencies {
    
        api(projects.stdlibJavaExtensions)
    
        implementation(project(":files")) {
            because("We need org.gradle.internal.file.PathTraversalChecker")
        }
    
        testImplementation(project(":base-services"))
        testImplementation(project(":core-api"))
        testImplementation(project(":native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 719 bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

         * @return uses the Maven project and its child modules
         */
        boolean aggregator() default false;
    
        /**
         * does this Mojo need to be online to be executed?
         * @return need to be online
         */
        boolean onlineRequired() default false;
    
        /**
         * TODO: v4: add a SPI for the configurator
         * configurator bean name.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/build.gradle.kts

        }
        integTestImplementation(project(":launcher")) {
            because("Daemon fixtures need DaemonRegistry")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Need access to java platforms")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-core"))
        crossVersionTestImplementation(libs.jettyWebApp)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. src/os/pidfd_linux.go

    	// because the PID recycle issue doesn't exist (IOW, pidfd, unlike PID,
    	// is guaranteed to refer to one particular process). Thus, there is no
    	// need for the workaround (blockUntilWaitable + sigMu) from pidWait.
    	//
    	// We _do_ need to be careful about reuse of the pidfd FD number when
    	// closing the pidfd. See handle for more details.
    	handle, status := p.handleTransientAcquire()
    	switch status {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/scan/UsedByScanPlugin.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Documents that the type or method is referenced by the build scan plugin,
     * and therefore changes need to be carefully managed. Other plugins like the
     * test-retry or the test-distribution plugin clarify their usage in the {@link #value}.
     * property.
     *
     * @since 4.0
     */
    @Retention(RetentionPolicy.SOURCE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top