Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 211 for Dword2 (0.2 sec)

  1. src/database/sql/convert_test.go

    		for _, tt := range tests {
    			rows.raw = rows.raw[:0]
    			test(tt.name, tt.in, tt.want)
    		}
    	})
    
    	// The numbers below are only valid for 64-bit interface word sizes,
    	// and gc. With 32-bit words there are more convT2E allocs, and
    	// with gccgo, only pointers currently go in interface data.
    	// So only care on amd64 gc for now.
    	measureAllocs := false
    	switch runtime.GOARCH {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/OrderingTest.java

          <T extends @Nullable Object> Scenario<?> mutate(Scenario<T> scenario) {
            List<Iterable<T>> words = Lists.newArrayList();
            words.add(Collections.<T>emptyList());
            for (T t : scenario.strictlyOrderedList) {
              words.add(Arrays.asList(t));
              for (T s : scenario.strictlyOrderedList) {
                words.add(Arrays.asList(t, s));
              }
            }
            return new Scenario<Iterable<T>>(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    	(I64Store32 [3] destptr (I64Const [0])
    		(I64Store32 destptr (I64Const [0]) mem))
    
    // Strip off any fractional word zeroing.
    (Zero [s] destptr mem) && s%8 != 0 && s > 8 && s < 32 =>
    	(Zero [s-s%8] (OffPtr <destptr.Type> destptr [s%8])
    		(I64Store destptr (I64Const [0]) mem))
    
    // Zero small numbers of words directly.
    (Zero [16] destptr mem) =>
    	(I64Store [8] destptr (I64Const [0])
    		(I64Store destptr (I64Const [0]) mem))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    An example of this type of _changing module_ is a Maven `SNAPSHOT` module, which always points at the latest artifact published.
    In other words, a standard Maven snapshot is a module that is continually evolving, it is a "changing module".
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/script/engine.go

    // The default commands configured by [NewEngine] resemble a simplified Unix
    // shell.
    //
    // # Script Language
    //
    // Each line of a script is parsed into a sequence of space-separated command
    // words, with environment variable expansion within each word and # marking an
    // end-of-line comment. Additional variables named ':' and '/' are expanded
    // within script arguments (expanding to the value of os.PathListSeparator and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    //    In this case the assembler expands to multiple instructions and uses tmp
    //    register (R23).
    
    // Suffixes encode the bit width of various instructions.
    // V (vlong)     = 64 bit
    // WU (word)     = 32 bit unsigned
    // W (word)      = 32 bit
    // H (half word) = 16 bit
    // HU            = 16 bit unsigned
    // B (byte)      = 8 bit
    // BU            = 8 bit unsigned
    // F (float)     = 32 bit float
    // D (double)    = 64 bit float
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    //    In this case the assembler expands to multiple instructions and uses tmp
    //    register (R23).
    
    // Suffixes encode the bit width of various instructions.
    // V (vlong)     = 64 bit
    // WU (word)     = 32 bit unsigned
    // W (word)      = 32 bit
    // H (half word) = 16 bit
    // HU            = 16 bit unsigned
    // B (byte)      = 8 bit
    // BU            = 8 bit unsigned
    // F (float)     = 32 bit float
    // D (double)    = 64 bit float
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MOVHstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVH", typ: "Mem"},     // store half word
    		{name: "MOVWstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVW", typ: "Mem"},     // store word
    		{name: "MOVDstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVD", typ: "Mem"},     // store double word
    		{name: "FMOVDstoreidx", argLength: 4, reg: fpstoreidx, asm: "FMOVD", typ: "Mem"},   // store double float
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. src/cmd/cover/cover_test.go

    	golden, err := os.ReadFile(htmlGolden)
    	if err != nil {
    		t.Fatalf("reading golden file: %v", err)
    	}
    	// Ignore white space differences.
    	// Break into lines, then compare by breaking into words.
    	goldenLines := strings.Split(string(golden), "\n")
    	outLines := strings.Split(out.String(), "\n")
    	// Compare at the line level, stopping at first different line so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

         */
        public static String toConstant(CharSequence string) {
            if (string == null) {
                return null;
            }
            return toWords(string, '_').toUpperCase(Locale.ROOT);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top