Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 424 for loadOps (0.23 sec)

  1. src/runtime/stubs_arm64.go

    func load_g()
    func save_g()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    func emptyfunc()
    
    // Used by reflectcall and the reflect package.
    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 10:04:13 UTC 2023
    - 700 bytes
    - Viewed (0)
  2. src/runtime/stubs_riscv64.go

    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    // Used by reflectcall and the reflect package.
    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 695 bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

     * </ul>
     *
     * To force selection of our fallback strategies we load {@link AbstractFuture} (and all of {@code
     * com.google.common.util.concurrent}) in degenerate class loaders which make certain platform
     * classes unavailable. Then we construct a test suite so we can run the normal AbstractFutureTest
     * test methods in these degenerate classloaders.
     */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/memcombine.go

    	// We use the block of the latest load.
    	loads := make([]*Value, n, 8)
    	for i := int64(0); i < n; i++ {
    		loads[i] = r[i].load
    	}
    	loadBlock := mergePoint(root.Block, loads...)
    	if loadBlock == nil {
    		return false
    	}
    	// Find a source position to use.
    	pos := src.NoXPos
    	for _, load := range loads {
    		if load.Block == loadBlock {
    			pos = load.Pos
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. platforms/jvm/testing-junit-platform/build.gradle.kts

    This project should only be used by :testing-jvm-infrastructure, however it is not depended upon directly.
    Instead :testing-jvm-infrastructure loads classes from this project via reflection due to the above noted Java version issue.
    We make sure to include this subproject as a runtime dependency in :distributions-core to ensure we include it with the Gradle distribution.
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 986 bytes
    - Viewed (0)
  6. test/fixedbugs/bug409.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Multiple inlined calls to a function that causes
    // redundant address loads.
    
    package main
    
    func F(v [2]float64) [2]float64 {
    	return [2]float64{v[0], v[1]}
    }
    
    func main() {
    	a := F([2]float64{1, 2})
    	b := F([2]float64{3, 4})
    	println(a[0], a[1], b[0], b[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 432 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

          )
        return dataset_file_map
    
    
    class RepresentativeDatasetLoader:
      """Representative dataset loader.
    
      Exposes the `load` method that loads the representative dataset from files.
      """
    
      def load(self) -> RepresentativeDatasetMapping:
        """Loads the representative datasets.
    
        Returns:
          representative dataset mapping: A loaded signature def key ->
          representative mapping.
        """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/BuildCacheLocalCacheIntegrationTest.groovy

            """
    
            settingsFile << localCache.localCacheConfiguration() << remoteCache.remoteCacheConfiguration()
    
            executer.beforeExecute { it.withBuildCacheEnabled() }
        }
    
        def "remote loads are cached locally"() {
            given:
            settingsFile << """
                buildCache { local.push = false }
            """
    
            when:
            succeeds("t")
    
            then:
            executed()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/CachingClassLoaderTest.groovy

    import spock.lang.Specification
    
    class CachingClassLoaderTest extends Specification {
        final parent = Mock(ClassLoader, useObjenesis: false)
        final classLoader = new CachingClassLoader(parent)
    
        def "loads class once and caches result"() {
            when:
            def cl = classLoader.loadClass("someClass")
    
            then:
            cl == String.class
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue4396b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This test _may_ fail on arm, but requires the host to
    // trap unaligned loads. This is generally done with
    //
    // echo "4" > /proc/cpu/alignment
    
    package main
    
    type T struct {
    	U uint16
    	V T2
    }
    
    type T2 struct {
    	pad    [4096]byte
    	A, B byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 496 bytes
    - Viewed (0)
Back to top