Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 424 for loadOps (0.32 sec)

  1. src/internal/runtime/atomic/atomic_ppc64x.go

    //go:noescape
    func Load(ptr *uint32) uint32
    
    //go:noescape
    func Load8(ptr *uint8) uint8
    
    //go:noescape
    func Load64(ptr *uint64) uint64
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(ptr *uint32) uint32
    
    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_riscv64.go

    //go:noescape
    func Load(ptr *uint32) uint32
    
    //go:noescape
    func Load8(ptr *uint8) uint8
    
    //go:noescape
    func Load64(ptr *uint64) uint64
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(ptr *uint32) uint32
    
    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/fingerprinting.h

    // Creates a FingerprintDef proto from a SavedModel (regular or chunked) and the
    // checkpoint meta file (.index) in `export_dir`.
    absl::StatusOr<FingerprintDef> CreateFingerprintDef(
        absl::string_view export_dir);
    
    // Loads the `fingerprint.pb` from `export_dir`, returns an error if there is
    // none.
    absl::StatusOr<FingerprintDef> ReadSavedModelFingerprint(
        absl::string_view export_dir);
    
    // Canonical fingerprinting ID for a SavedModel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 19:55:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/WrapperExecutorTest.groovy

            properties.validateDistributionUrl = 'true'
            propertiesFile.parentFile.mkdirs()
            propertiesFile.withOutputStream { properties.store(it, 'header') }
        }
    
        def "loads wrapper meta data from specified properties file"() {
            def wrapper = WrapperExecutor.forWrapperPropertiesFile(propertiesFile)
    
            expect:
            wrapper.distribution == new URI('http://server/test/gradle.zip')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/DefaultModuleArtifactCacheTest.groovy

        }
    
        def "loads missing CachedArtifact from persistentIndexedCache"() {
            given:
            def key = createEntryInPersistentCache()
            _ * cachedArtifact.missing >> true
    
            when:
            def fromCache = index.lookup(key)
    
            then:
            fromCache == cachedArtifact
            fromCache.isMissing()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    compilation of Kotlin source sets, e.g. in `buildSrc`, the `kotlin-dsl` plugin provide Kotlin DSL features to source sets and compiles Kotlin code using the Kotlin Gradle Plugin.
    
    When used for build script editing, a Kotlin DSL enabled IDE editor loads the Kotlin DSL support from its configured Gradle version and uses it to resolve script dependencies. The Kotlin DSL Script Dependencies Resolver uses the Gradle Tooling API to build the script dependencies model that enables the IDE editor features....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_mips64x.go

    //go:noescape
    func Load(ptr *uint32) uint32
    
    //go:noescape
    func Load8(ptr *uint8) uint8
    
    //go:noescape
    func Load64(ptr *uint64) uint64
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(ptr *uint32) uint32
    
    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/sync/map_test.go

    				t.Fatalf("Nested Range loads unexpected value, got %+v want %+v", v, value)
    			}
    
    			// We didn't keep 42 and a value into the map before, if somehow we loaded
    			// a value from such a key, meaning there must be an internal bug regarding
    			// nested range in the Map.
    			if _, loaded := m.LoadOrStore(42, "dummy"); loaded {
    				t.Fatalf("Nested Range loads unexpected value, want store a new value")
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/ResponseBody.kt

       *
       * This method loads entire response body into memory. If the response body is very large this
       * may trigger an [OutOfMemoryError]. Prefer to stream the response body if this is a
       * possibility for your response.
       */
      @Throws(IOException::class)
      fun bytes() = commonBytes()
    
      /**
       * Returns the response as a [ByteString].
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/ClassPath.java

        this.resources = resources;
      }
    
      /**
       * Returns a {@code ClassPath} representing all classes and resources loadable from {@code
       * classloader} and its ancestor class loaders.
       *
       * <p><b>Warning:</b> {@code ClassPath} can find classes and resources only from:
       *
       * <ul>
       *   <li>{@link URLClassLoader} instances' {@code file:} URLs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
Back to top