Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for divd (0.04 sec)

  1. src/cmd/internal/obj/ppc64/a.out.go

    	AFRSQRTECC
    	AFSEL
    	AFSELCC
    	AFSQRT
    	AFSQRTCC
    	AFSQRTS
    	AFSQRTSCC
    
    	/* 64-bit */
    
    	ACNTLZD
    	ACNTLZDCC
    	ACMPW /* CMP with L=0 */
    	ACMPWU
    	ACMPB
    	AFTDIV
    	AFTSQRT
    	ADIVD
    	ADIVDCC
    	ADIVDE
    	ADIVDECC
    	ADIVDEU
    	ADIVDEUCC
    	ADIVDVCC
    	ADIVDV
    	ADIVDU
    	ADIVDUCC
    	ADIVDUVCC
    	ADIVDUV
    	AEXTSW
    	AEXTSWCC
    	/* AFCFIW; AFCFIWCC */
    	AFCFID
    	AFCFIDCC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. docs/en/docs/contributing.md

        <div class="termy">
    
        ```console
        $ source ./env/Scripts/activate
        ```
    
        </div>
    
    To check it worked, use:
    
    === "Linux, macOS, Windows Bash"
    
        <div class="termy">
    
        ```console
        $ which pip
    
        some/directory/fastapi/env/bin/pip
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    		return nil
    	}
    	// If we are more than timeout seconds after the lease duration that is past the timeout
    	// on the lease renew. Time to start reporting ourselves as unhealthy. We should have
    	// died but conditions like deadlock can prevent this. (See #70819)
    	if le.clock.Since(le.observedTime) > le.config.LeaseDuration+maxTolerableExpiredLease {
    		return fmt.Errorf("failed election to renew leadership on lease %s", le.config.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Div16 [false] x y) => (I64DivS (SignExt16to64 x) (SignExt16to64 y))
    (Div8          x y) => (I64DivS (SignExt8to64 x) (SignExt8to64 y))
    (Div64u ...) => (I64DivU ...)
    (Div32u x y) => (I64DivU (ZeroExt32to64 x) (ZeroExt32to64 y))
    (Div16u x y) => (I64DivU (ZeroExt16to64 x) (ZeroExt16to64 y))
    (Div8u  x y) => (I64DivU (ZeroExt8to64 x) (ZeroExt8to64 y))
    (Div(64|32)F ...) => (F(64|32)Div ...)
    
    (Mod64 [false] x y) => (I64RemS x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. src/runtime/sys_freebsd_amd64.s

    	MOVQ	old+8(FP), SI
    	MOVQ	$SYS_sigaltstack, AX
    	SYSCALL
    	JCC	2(PC)
    	MOVL	$0xf1, 0xf1  // crash
    	RET
    
    TEXT runtimeĀ·usleep(SB),NOSPLIT,$16
    	MOVL	$0, DX
    	MOVL	usec+0(FP), AX
    	MOVL	$1000000, CX
    	DIVL	CX
    	MOVQ	AX, 0(SP)		// tv_sec
    	MOVL	$1000, AX
    	MULL	DX
    	MOVQ	AX, 8(SP)		// tv_nsec
    
    	MOVQ	SP, DI			// arg 1 - rqtp
    	MOVQ	$0, SI			// arg 2 - rmtp
    	MOVL	$SYS_nanosleep, AX
    	SYSCALL
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{161, "ENOKEY", "required key not available"},
    	{162, "EKEYEXPIRED", "key has expired"},
    	{163, "EKEYREVOKED", "key has been revoked"},
    	{164, "EKEYREJECTED", "key was rejected by service"},
    	{165, "EOWNERDEAD", "owner died"},
    	{166, "ENOTRECOVERABLE", "state not recoverable"},
    	{167, "ERFKILL", "operation not possible due to RF-kill"},
    	{168, "EHWPOISON", "memory page has hardware error"},
    	{1133, "EDQUOT", "disk quota exceeded"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{126, "ENOKEY", "required key not available"},
    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	{126, "ENOKEY", "required key not available"},
    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	{126, "ENOKEY", "required key not available"},
    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{126, "ENOKEY", "required key not available"},
    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top