Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 185 for 1e15 (0.05 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/condition_util.go

    }
    
    func move_wide_preferred_4(sf, N, imms, immr uint32) bool {
    	if sf == 1 && N != 1 {
    		return false
    	}
    	if sf == 0 && !(N == 0 && ((imms>>5)&1) == 0) {
    		return false
    	}
    	if imms < 16 {
    		return (-immr)%16 <= (15 - imms)
    	}
    	width := uint32(32)
    	if sf == 1 {
    		width = uint32(64)
    	}
    	if imms >= (width - 15) {
    		return (immr % 16) <= (imms - (width - 15))
    	}
    	return false
    }
    
    type sys uint8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. src/go/scanner/example_test.go

    	for {
    		pos, tok, lit := s.Scan()
    		if tok == token.EOF {
    			break
    		}
    		fmt.Printf("%s\t%s\t%q\n", fset.Position(pos), tok, lit)
    	}
    
    	// output:
    	// 1:1	IDENT	"cos"
    	// 1:4	(	""
    	// 1:5	IDENT	"x"
    	// 1:6	)	""
    	// 1:8	+	""
    	// 1:10	IMAG	"1i"
    	// 1:12	*	""
    	// 1:13	IDENT	"sin"
    	// 1:16	(	""
    	// 1:17	IDENT	"x"
    	// 1:18	)	""
    	// 1:20	COMMENT	"// Euler"
    	// 1:28	;	"\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. src/internal/cpu/cpu_arm64.go

    	case 1:
    		ARM64.HasAES = true
    	case 2:
    		ARM64.HasAES = true
    		ARM64.HasPMULL = true
    	}
    
    	switch extractBits(isar0, 8, 11) {
    	case 1:
    		ARM64.HasSHA1 = true
    	}
    
    	switch extractBits(isar0, 12, 15) {
    	case 1:
    		ARM64.HasSHA2 = true
    	case 2:
    		ARM64.HasSHA2 = true
    		ARM64.HasSHA512 = true
    	}
    
    	switch extractBits(isar0, 16, 19) {
    	case 1:
    		ARM64.HasCRC32 = true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 14:08:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/toolingApi-operation.puml

    ConnectionVersion4BackedConsumerConnection.java: pre 1.0m8
    InternalConnectionBackedConsumerConnection.java: 1.0m8 - 1.1
    BuildActionRunnerBackedConsumerConnection: 1.2 - 1.5
    ModelBuilderBackedConsumerConnection.java: 1.6 - 1.7
    ActionAwareConsumerConnection.java: 1.8 - 2.0
    CancellableConsumerConnection.java: 2.1 -
    
    THIS is the cross-version boundary
    end note
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ear/earCustomized/groovy/ear/build.gradle

        // The following dependencies will become ear libs and will
        // be placed in a dir configured via the libDirName property
        earlib group: 'log4j', name: 'log4j', version: '1.2.15', ext: 'jar'
    }
    
    tasks.named('ear') {
        appDirectory = file('src/main/app')  // use application metadata found in this folder
        libDirName 'APP-INF/lib' // put dependent libraries into APP-INF/lib inside the generated EAR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_amd64.s

    	MOVOU bswapMask<>(SB), BSWAP
    	MOVOU gcmPoly<>(SB), POLY
    
    	SHLQ $3, plen
    	SHLQ $3, dlen
    
    	MOVQ plen, B0
    	PINSRQ $1, dlen, B0
    
    	PXOR ACC0, B0
    
    	MOVOU (16*14)(pTbl), ACC0
    	MOVOU (16*15)(pTbl), ACCM
    	MOVOU ACC0, ACC1
    
    	PCLMULQDQ $0x00, B0, ACC0
    	PCLMULQDQ $0x11, B0, ACC1
    	PSHUFD $78, B0, T0
    	PXOR B0, T0
    	PCLMULQDQ $0x00, T0, ACCM
    
    	PXOR ACC0, ACCM
    	PXOR ACC1, ACCM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. src/crypto/md5/md5block_arm.s

    	ROUND4(Ra, Rb, Rc, Rd,  0,	6, Rc0)
    	ROUND4(Rd, Ra, Rb, Rc,  7, 10, Rc1)
    	ROUND4(Rc, Rd, Ra, Rb, 14, 15, Rc2)
    	ROUND4(Rb, Rc, Rd, Ra,  5, 21, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND4(Ra, Rb, Rc, Rd, 12,	6, Rc0)
    	ROUND4(Rd, Ra, Rb, Rc,  3, 10, Rc1)
    	ROUND4(Rc, Rd, Ra, Rb, 10, 15, Rc2)
    	ROUND4(Rb, Rc, Rd, Ra,  1, 21, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/ear/earCustomized/kotlin/ear/build.gradle.kts

        // The following dependencies will become ear libs and will
        // be placed in a dir configured via the libDirName property
        earlib(group = "log4j", name = "log4j", version = "1.2.15", ext = "jar")
    }
    
    tasks.ear {
        appDirectory = file("src/main/app")  // use application metadata found in this folder
        libDirName = "APP-INF/lib" // put dependent libraries into APP-INF/lib inside the generated EAR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/math/bits/make_tables.go

    	// Use a const string to allow the compiler to constant-evaluate lookups at constant index.
    	fmt.Fprintf(w, "const %s = \"\"+\n\"", name)
    	for i := 0; i < 256; i++ {
    		fmt.Fprintf(w, "\\x%02x", f(uint8(i)))
    		if i%16 == 15 && i != 255 {
    			fmt.Fprint(w, "\"+\n\"")
    		}
    	}
    	fmt.Fprint(w, "\"\n\n")
    }
    
    func ntz8(x uint8) (n uint8) {
    	for x&1 == 0 && n < 8 {
    		x >>= 1
    		n++
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/dependencies/classes-as-dependencies.md

    Теперь мы можем изменить зависимость `common_parameters`, указанную выше, на класс `CommonQueryParams`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="11-15"
        {!> ../../../docs_src/dependencies/tutorial002_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="11-15"
        {!> ../../../docs_src/dependencies/tutorial002_an_py39.py!}
        ```
    
    === "Python 3.6+"
    
        ```Python hl_lines="12-16"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 12 11:12:19 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top