Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for order1 (0.97 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

             * invoke interruptTask on any subsequent futures.
             */
            callInterruptTask = false;
          }
          // We call this before the listeners in order to avoid needing to manage a separate stack data
          // structure for them.  Also, some implementations rely on this running prior to listeners
          // so that the cleanup work is visible to listeners.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

             * invoke interruptTask on any subsequent futures.
             */
            callInterruptTask = false;
          }
          // We call this before the listeners in order to avoid needing to manage a separate stack data
          // structure for them.  Also, some implementations rely on this running prior to listeners
          // so that the cleanup work is visible to listeners.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "strings"
    
    // Notes:
    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - When doing sub-register operations, we try to write the whole
    //    destination register to avoid a partial-register write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                        if (values.length > 1) {
                            return SortBuilders.fieldSort(values[0]).order("desc".equalsIgnoreCase(values[0]) ? SortOrder.DESC : SortOrder.ASC);
                        }
                        return SortBuilders.fieldSort(values[0]).order(SortOrder.ASC);
                    }).toArray(n -> new SortBuilder[n]));
                    ot = OptionalThing.of(sortBuilders);
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

     * URL escape character itself.
     * <p>
     * The server
     * component may a traditional NetBIOS name, a DNS name, or IP
     * address. These name resolution mechanisms and their resolution order
     * can be changed (See <a href="../../../resolver.html">Setting Name
     * Resolution Properties</a>). The servername and path components are
     * not case sensitive but the domain, username, and password components
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "strings"
    
    // Notes:
    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - *const instructions may use a constant larger than the instruction can encode.
    //    In this case the assembler expands to multiple instructions and uses tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    		// Check the list is in dependency order.
    		tg.run("list", "-deps", "math")
    		want := "unsafe\ninternal/cpu\nmath/bits\nmath\n"
    		out := tg.stdout.String()
    		if !strings.Contains(out, "internal/cpu") {
    			// Some systems don't use internal/cpu.
    			want = "unsafe\nmath/bits\nmath\n"
    		}
    		if tg.stdout.String() != want {
    			t.Fatalf("list -deps math: wrong order\nhave %q\nwant %q", tg.stdout.String(), want)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	if len(sa.Remote) != 6 {
    		return nil, 0, EINVAL
    	}
    	if len(sa.Dev) > IFNAMSIZ-1 {
    		return nil, 0, EINVAL
    	}
    
    	*(*uint16)(unsafe.Pointer(&sa.raw[0])) = AF_PPPOX
    	// This next field is in host-endian byte order. We can't use the
    	// same unsafe pointer cast as above, because this value is not
    	// 32-bit aligned and some architectures don't allow unaligned
    	// access.
    	//
    	// However, the value of px_proto_oe is 0, so we can use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    	}
    	return encodeJImmediate(imm) | rd<<7 | enc.opcode
    }
    
    // encodeCBImmediate encodes an immediate for a CB-type RISC-V instruction.
    func encodeCBImmediate(imm uint32) uint32 {
    	// Bit order - [8|4:3|7:6|2:1|5]
    	bits := extractBitAndShift(imm, 8, 7)
    	bits |= extractBitAndShift(imm, 4, 6)
    	bits |= extractBitAndShift(imm, 3, 5)
    	bits |= extractBitAndShift(imm, 7, 4)
    	bits |= extractBitAndShift(imm, 6, 3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

         * sure that we don't overdo the isolation and still track dependencies between services
         * inside a single registry, even when a child requested that service.
         */
    
        def "closes services in dependency order even when child requested them first"() {
            def service1 = Mock(TestCloseService)
            def service2 = Mock(TestStopService)
            def service3 = Mock(CloseableService)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
Back to top