Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,188 for adown (0.04 sec)

  1. src/syscall/asm_plan9_amd64.s

    	MOVQ	trap+0(FP), BP	// syscall entry
    	// slide args down on top of system call number
    	LEAQ	a1+8(FP), SI
    	LEAQ	trap+0(FP), DI
    	CLD
    	MOVSQ
    	MOVSQ
    	MOVSQ
    	SYSCALL
    	MOVQ	AX, r1+32(FP)
    	MOVQ	AX, r2+40(FP)
    	MOVQ	AX, err+48(FP)
    	RET
    
    TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
    	MOVQ	trap+0(FP), BP	// syscall entry
    	// slide args down on top of system call number
    	LEAQ	a1+8(FP), SI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 01:29:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

        double twoToThe53 = Math.pow(2, 53);
        // the representable doubles are 2^53 and 2^53 + 2.
        // 2^53+1 is halfway between, so HALF_UP will go up and HALF_DOWN will go down.
        new RoundToDoubleTester(BigInteger.valueOf((1L << 53) + 1))
            .setExpectation(twoToThe53, DOWN, FLOOR, HALF_DOWN, HALF_EVEN)
            .setExpectation(Math.nextUp(twoToThe53), CEILING, UP, HALF_UP)
            .roundUnnecessaryShouldThrow()
            .test();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ModuleDependencySpecBuilder.java

        /**
         * Narrows this dependency specification down to a specific module.
         *
         * @param name the module name
         *
         * @return this instance
         */
        ModuleDependencySpecBuilder module(String name);
    
        /**
         * Narrows this dependency specification down to a specific group.
         *
         * @param name the group name
         *
         * @return this instance
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. internal/config/batch/help.go

    			Key:         ReplicationWorkersWait,
    			Description: `maximum sleep duration between objects to slow down batch replication operation` + defaultHelpPostfix(ReplicationWorkersWait),
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         KeyRotationWorkersWait,
    			Description: `maximum sleep duration between objects to slow down batch keyrotation operation` + defaultHelpPostfix(KeyRotationWorkersWait),
    			Optional:    true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/container/heap/heap.go

    func Pop(h Interface) any {
    	n := h.Len() - 1
    	h.Swap(0, n)
    	down(h, 0, n)
    	return h.Pop()
    }
    
    // Remove removes and returns the element at index i from the heap.
    // The complexity is O(log n) where n = h.Len().
    func Remove(h Interface, i int) any {
    	n := h.Len() - 1
    	if n != i {
    		h.Swap(i, n)
    		if !down(h, i, n) {
    			up(h, i)
    		}
    	}
    	return h.Pop()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/syscall/asm_unix_386.s

    // Trap # in AX, args on stack above caller pc.
    
    TEXT	·Syscall(SB),NOSPLIT,$0-28
    	CALL	runtime·entersyscall(SB)
    	MOVL	trap+0(FP), AX	// syscall entry
    	// slide args down on top of system call number
    	LEAL		a1+4(FP), SI
    	LEAL		trap+0(FP), DI
    	CLD
    	MOVSL
    	MOVSL
    	MOVSL
    	INT	$0x80
    	JAE	ok
    	MOVL	$-1, r1+16(FP)	// r1
    	MOVL	$-1, r2+20(FP)	// r2
    	MOVL	AX, err+24(FP)	// errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  7. src/syscall/asm_plan9_386.s

    	MOVL	trap+0(FP), AX	// syscall entry
    	// slide args down on top of system call number
    	LEAL	a1+4(FP), SI
    	LEAL	trap+0(FP), DI
    	CLD
    	MOVSL
    	MOVSL
    	MOVSL
    	INT	$64
    	MOVL	AX, r1+16(FP)
    	MOVL	AX, r2+20(FP)
    	MOVL	AX, err+24(FP)
    	RET
    
    TEXT	·RawSyscall6(SB),NOSPLIT,$0-40
    	MOVL	trap+0(FP), AX	// syscall entry
    	// slide args down on top of system call number
    	LEAL	a1+4(FP), SI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 15:28:51 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  8. pkg/scheduler/metrics/resources/resources_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	h.ServeHTTP(r, req)
    
    	expected := `# HELP kube_pod_resource_limit [STABLE] Resources limit for workloads on the cluster, broken down by pod. This shows the resource usage the scheduler and kubelet expect per pod for resources along with the unit for the resource if any.
    # TYPE kube_pod_resource_limit gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/with_retry_after.go

    //   - 'Connection: close': tear down the TCP connection
    //
    // TODO: is there a way to merge WithWaitGroup and this filter?
    func WithRetryAfter(handler http.Handler, shutdownDelayDurationElapsedCh <-chan struct{}) http.Handler {
    	shutdownRetryAfterParams := &retryAfterParams{
    		TearDownConnection: true,
    		Message:            "The apiserver is shutting down, please try again later.",
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 31 14:10:46 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/eventbus/AsyncEventBus.java

       *
       * @param identifier short name for the bus, for logging purposes.
       * @param executor Executor to use to dispatch events. It is the caller's responsibility to shut
       *     down the executor after the last event has been posted to this event bus.
       */
      public AsyncEventBus(String identifier, Executor executor) {
        super(identifier, executor, Dispatcher.legacyAsync(), LoggingHandler.INSTANCE);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top