Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 686 for spill (2.93 sec)

  1. docs/en/docs/how-to/conditional-openapi.md

    Hiding your documentation user interfaces in production *shouldn't* be the way to protect your API.
    
    That doesn't add any extra security to your API, the *path operations* will still be available where they are.
    
    If there's a security flaw in your code, it will still exist.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/error_util.h

    // code still uses the default error reporting, and the final return function
    // can return the Status constructed from the diagnostics collected.
    // todo: [b/253331656]. Note ConsumeStatus() and Combine() are wrappers
    // of what is inherited from the BaseScopedDiagnosticHandler  to
    // support cases where tensorflow::Status is still being used (base class uses
    // absl::Status)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. docs/erasure/README.md

    ## Why is Erasure Code useful?
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/lockosthread.go

    			return
    		}
    		if !supported || !exists {
    			goto ok
    		}
    	}
    	println("sub thread", subTID, "still running")
    	return
    ok:
    	println("OK")
    }
    
    func LockOSThreadAvoidsStatePropagation() {
    	// This test is similar to LockOSThreadAlt in that it will detect if a thread
    	// which should have died is still running. However, rather than do this with
    	// thread IDs, it does this by unsharing state on that thread. This way, it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/apt/groovy/build.gradle

    dependencies {
        // The dagger compiler and its transitive dependencies will only be found on annotation processing classpath
        annotationProcessor 'com.google.dagger:dagger-compiler:2.44'
    
        // And we still need the Dagger library on the compile classpath itself
        implementation 'com.google.dagger:dagger:2.44'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 451 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/apt/kotlin/build.gradle.kts

    dependencies {
        // The dagger compiler and its transitive dependencies will only be found on annotation processing classpath
        annotationProcessor("com.google.dagger:dagger-compiler:2.44")
    
        // And we still need the Dagger library on the compile classpath itself
        implementation("com.google.dagger:dagger:2.44")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 448 bytes
    - Viewed (0)
  7. src/runtime/profbuf_test.go

    		read(t, b, []uint64{10, 1, 2, 3, 4, 5, 6, 7, 8, 9}, []unsafe.Pointer{unsafe.Pointer(&myTags[0])}) // reads 10 but still in use until next read
    		write(t, b, unsafe.Pointer(&myTags[0]), 1, []uint64{2, 3}, []uintptr{4, 5})                       // uses 6
    		read(t, b, []uint64{6, 1, 2, 3, 4, 5}, []unsafe.Pointer{unsafe.Pointer(&myTags[0])})              // reads 6 but still in use until next read
    		// now 10 available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 20:04:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. src/net/http/main_test.go

    		// goroutines from the first leak still hanging around, and we may add a lot
    		// of latency waiting for them to exit at the end of each test.
    		return
    	}
    
    	// We shouldn't be running the leak check for parallel tests, because we might
    	// report the goroutines from a test that is still running as a leak from a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/GroovyDynamicDispatchInterceptors.java

        @CallableKind.StaticMethod(ofClass = ScriptBytecodeAdapter.class)
        public static void intercept_setGroovyObjectProperty(
            Object messageArgument,
            /* Sometimes it's null, we can't rely on it, so we still use @CallerClassName */
            Class<?> senderClass,
            GroovyObject receiver,
            String messageName,
            @CallerClassName String consumer,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/EntityWasGarbageCollectedException.kt

    package org.jetbrains.kotlin.analysis.api.fir.utils
    
    class EntityWasGarbageCollectedException(entity: String) : IllegalStateException() {
        override val message: String = "$entity was garbage collected while KaSession session is still valid"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 455 bytes
    - Viewed (0)
Back to top