Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 194 for need (0.04 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. pilot/pkg/model/endpointshards.go

    	FullPush
    )
    
    // UpdateServiceEndpoints updates EndpointShards data by clusterID, hostname, IstioEndpoints.
    // It also tracks the changes to ServiceAccounts. It returns whether endpoints need to be pushed and
    // it also returns if they need to be pushed whether a full push is needed or incremental push is sufficient.
    func (e *EndpointIndex) UpdateServiceEndpoints(
    	shard ShardKey,
    	hostname string,
    	namespace string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/internal/work/exec.go

    			need &^= needCovMetaFile
    		}
    	}
    
    	// Load cached vet config, but only if that's all we have left
    	// (need == needVet, not testing just the one bit).
    	// If we are going to do a full build anyway,
    	// we're going to regenerate the files below anyway.
    	if need == needVet {
    		if err := b.loadCachedVet(a); err == nil {
    			need &^= needVet
    		}
    	}
    	if need == 0 {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. 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)
Back to top