Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 313 for little32 (0.23 sec)

  1. guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java

    /** @author Jesse Wilson */
    final class Platform {
      static CharMatcher precomputeCharMatcher(CharMatcher matcher) {
        // CharMatcher.precomputed() produces CharMatchers that are maybe a little
        // faster (and that's debatable), but definitely more memory-hungry. We're
        // choosing to turn .precomputed() into a no-op in GWT, because it doesn't
        // seem to be a worthwhile tradeoff in a browser.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 27 13:56:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/byteorder.go

    	return uint64(b[7]) | uint64(b[6])<<8 | uint64(b[5])<<16 | uint64(b[4])<<24 |
    		uint64(b[3])<<32 | uint64(b[2])<<40 | uint64(b[1])<<48 | uint64(b[0])<<56
    }
    
    // hostByteOrder returns littleEndian on little-endian machines and
    // bigEndian on big-endian machines.
    func hostByteOrder() byteOrder {
    	switch runtime.GOARCH {
    	case "386", "amd64", "amd64p32",
    		"alpha",
    		"arm", "arm64",
    		"loong64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 03 19:48:07 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. src/runtime/pprof/vminfo_darwin.go

    				read64(&info.Offset),
    				regionFilename(addr),
    				"")
    			added = true
    		}
    		addr += memRegionSize
    	}
    }
    
    func read64(p *[8]byte) uint64 {
    	// all supported darwin platforms are little endian
    	return uint64(p[0]) | uint64(p[1])<<8 | uint64(p[2])<<16 | uint64(p[3])<<24 | uint64(p[4])<<32 | uint64(p[5])<<40 | uint64(p[6])<<48 | uint64(p[7])<<56
    }
    
    func regionFilename(address uint64) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 23:35:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/fmahash_test.go

    	"regexp"
    	"runtime"
    	"testing"
    )
    
    // TestFmaHash checks that the hash-test machinery works properly for a single case.
    // It also runs ssa/check and gccheck to be sure that those are checked at least a
    // little in each run.bash.  It does not check or run the generated code.
    // The test file is however a useful example of fused-vs-cascaded multiply-add.
    func TestFmaHash(t *testing.T) {
    	switch runtime.GOOS {
    	case "linux", "darwin":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaWorkspace.java

    import org.gradle.plugins.ide.idea.model.Workspace;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Generates an IDEA workspace file *only* for root project. There's little you can configure about workspace generation at the moment.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateIdeaWorkspace extends XmlGeneratorTask<Workspace> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DefaultProcessWorkerSpec.java

            super(objectFactory);
            this.forkOptions = forkOptions;
            this.forkOptions.setEnvironment(sanitizeEnvironment(forkOptions));
        }
    
        /**
         * Inherit as little as possible from the parent process' environment.
         *
         * On Unix systems we need to pass a few environment variables to make sure
         * the file system is accessed with the right encoding.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/path.go

    // symbol table. All control characters, space, '%' and '"', as well as
    // non-7-bit clean bytes turn into %xx. The period needs escaping only in the
    // last segment of the path, and it makes for happier users if we escape that as
    // little as possible.
    func PathToPrefix(s string) string {
    	slash := strings.LastIndex(s, "/")
    	// check for chars that need escaping
    	n := 0
    	for r := 0; r < len(s); r++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/test/groovy/org/gradle/api/plugins/scala/Scala3PluginTest.groovy

            task dependsOn(JvmConstants.CLASSES_TASK_NAME, JvmConstants.COMPILE_JAVA_TASK_NAME, 'compileScala')
            task.destinationDir == project.file("$project.docsDir/scaladoc")
            // This assertion is a little tricky, because `task.source` is an empty list since we didn't compile these files, so we check here if [] == []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. docs/en/docs/css/termynal.css

    }
    
    [data-termynal]:before {
        content: '';
        position: absolute;
        top: 15px;
        left: 15px;
        display: inline-block;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        /* A little hack to display the window buttons in one pseudo element. */
        background: #d9515d;
        -webkit-box-shadow: 25px 0 0 #f4c025, 50px 0 0 #3ec930;
                box-shadow: 25px 0 0 #f4c025, 50px 0 0 #3ec930;
    }
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/Hashing.java

      /**
       * Returns a hash function implementing the <a
       * href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp">32-bit murmur3
       * algorithm, x86 variant</a> (little-endian variant), using the given seed value, <b>with a known
       * bug</b> as described in the deprecation text.
       *
       * <p>The C++ equivalent is the MurmurHash3_x86_32 function (Murmur3A), which however does not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top