Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for Dword2 (0.09 sec)

  1. pkg/apis/flowcontrol/types.go

    	//
    	// LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
    	//
    	// +optional
    	LendablePercent *int32
    	// The `BorrowingCL` of an Exempt priority level is implicitly `ServerCL`.
    	// In other words, an exempt priority level
    	// has no meaningful limit on how much it borrows.
    	// There is no explicit representation of that here.
    }
    
    // LimitResponse defines how to handle requests that can not be executed right now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. src/slices/slices_test.go

    	if want := []int{2, 9, 5, 1, 4, 1, 3}; !Equal(odd, want) {
    		t.Errorf("Reverse(odd) = %v, want %v", odd, want)
    	}
    
    	words := strings.Fields("one two three")
    	Reverse(words)
    	if want := strings.Fields("three two one"); !Equal(words, want) {
    		t.Errorf("Reverse(words) = %v, want %v", words, want)
    	}
    
    	singleton := []string{"one"}
    	Reverse(singleton)
    	if want := []string{"one"}; !Equal(singleton, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top