Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 318 for need (0.03 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. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     *
     * #### Implementation Notes
     *
     * Analysis API platforms need to take care of publishing modification topics via the [analysisMessageBus]. In general, if your platform
     * works with static code and static module structure, you do not need to publish any events. However, keep in mind the contracts of the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * An **engine service** as defined by the Platform Interface (see the README).
     *
     * Engine services do not need to be implemented by a platform. Quite the contrary, they are implemented by the Analysis API engine and
     * intended to support platform implementations. They are defined in the Platform Interface, as opposed to the user-facing Analysis API,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. src/sync/waitgroup.go

    		w := uint32(state)
    		if v == 0 {
    			// Counter is 0, no need to wait.
    			if race.Enabled {
    				race.Enable()
    				race.Acquire(unsafe.Pointer(wg))
    			}
    			return
    		}
    		// Increment waiters count.
    		if wg.state.CompareAndSwap(state, state+1) {
    			if race.Enabled && w == 0 {
    				// Wait must be synchronized with the first Add.
    				// Need to model this is as a write to race with the read in Add.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/informers.go

    		// We have no good way to distinguish between these two cases from here. But we don't need to!
    		// Existing pods will be handled by the dataplane using `GetAmbientPods`,
    		// and the initial enqueueNamespace, and new pods will be handled by the CNI.
    
    	case controllers.EventUpdate:
    		// For update, we just need to handle opt outs
    		newPod := event.New.(*corev1.Pod)
    		oldPod := event.Old.(*corev1.Pod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top