Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for Ufour (0.05 sec)

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

    	REG_F21
    	REG_F22
    	REG_F23
    	REG_F24
    	REG_F25
    	REG_F26
    	REG_F27
    	REG_F28
    	REG_F29
    	REG_F30
    	REG_F31
    
    	REG_FCSR0 // must be a multiple of 32
    	REG_FCSR1
    	REG_FCSR2
    	REG_FCSR3 // only four registers are needed
    	REG_FCSR4
    	REG_FCSR5
    	REG_FCSR6
    	REG_FCSR7
    	REG_FCSR8
    	REG_FCSR9
    	REG_FCSR10
    	REG_FCSR11
    	REG_FCSR12
    	REG_FCSR13
    	REG_FCSR14
    	REG_FCSR15
    	REG_FCSR16
    	REG_FCSR17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

            boolean isWindows = actualOsName.contains(FAMILY_WINDOWS);
            boolean is9x = false;
            boolean isNT = false;
            if (isWindows) {
                // there are only four 9x platforms that we look for
                is9x = (actualOsName.contains("95")
                        || actualOsName.contains("98")
                        || actualOsName.contains("me")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

                        })
                    }
    
                    task four {
                        doLast {
                            def a = new A()
                            assertScriptOrigin(a, seen)
                        }
                    }
    
                    class A {}
                ''')
            }
    
            when:
            run 'one', 'two', 'three', 'four'
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/internal/coverage/pods/pods.go

    //
    // In these two directories we have three meta-data files, but only
    // two are distinct, meaning that we'll wind up with two pods. The
    // first pod (with meta-file M1) will have four counter data files
    // (C1, C2, C3, C4) and the second pod will have two counter data files
    // (C5, C6).
    func collectPodsImpl(files []string, dirIndices []int, warn bool) []Pod {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/runtime/syscall_windows.go

    	return false
    }
    
    // abiDesc specifies how to translate from a C frame to a Go
    // frame. This does not specify how to translate back because
    // the result is always a uintptr. If the C ABI is fastcall,
    // this assumes the four fastcall registers were first spilled
    // to the shadow space.
    type abiDesc struct {
    	parts []abiPart
    
    	srcStackSize uintptr // stdcall/fastcall stack space tracking
    	dstStackSize uintptr // Go stack space used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/database/sql/convert.go

    			if err = validateNamedValueName(np.Name); err != nil {
    				return nil, err
    			}
    			arg = np.Value
    			nv.Name = np.Name
    		}
    		nv.Ordinal = n + 1
    		nv.Value = arg
    
    		// Checking sequence has four routes:
    		// A: 1. Default
    		// B: 1. NamedValueChecker 2. Column Converter 3. Default
    		// C: 1. NamedValueChecker 3. Default
    		// D: 1. Column Converter 2. Default
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/crypto/tls/cipher_suites.go

    //
    //     The only potential advantages of AES-256 are better multi-target
    //     margins, and hypothetical post-quantum properties. Neither apply to
    //     TLS, and AES-256 is slower due to its four extra rounds (which don't
    //     contribute to the advantages above).
    //
    //   - ECDSA comes before RSA
    //
    //     The relative order of ECDSA and RSA cipher suites doesn't matter,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768.go

    	for i := 0; i < n; i += 2 {
    		b[i/2] = uint8(compress(f[i], 4) | compress(f[i+1], 4)<<4)
    	}
    	return s
    }
    
    // ringDecodeAndDecompress4 decodes a 128-byte encoding of a ring element where
    // each four bits are mapped to an equidistant distribution.
    //
    // It implements ByteDecode₄, according to FIPS 203 (DRAFT), Algorithm 5,
    // followed by Decompress₄, according to FIPS 203 (DRAFT), Definition 4.6.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  9. src/crypto/aes/gcm_s390x.go

    	// GCM has two modes of operation with respect to the initial counter
    	// state: a "fast path" for 96-bit (12-byte) nonces, and a "slow path"
    	// for nonces of other lengths. For a 96-bit nonce, the nonce, along
    	// with a four-byte big-endian counter starting at one, is used
    	// directly as the starting counter. For other nonce sizes, the counter
    	// is computed by passing it through the GHASH function.
    	var counter gcmCount
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm.go

    package nistec
    
    import (
    	_ "embed"
    	"errors"
    	"internal/byteorder"
    	"math/bits"
    	"runtime"
    	"unsafe"
    )
    
    // p256Element is a P-256 base field element in [0, P-1] in the Montgomery
    // domain (with R 2²⁵⁶) as four limbs in little-endian order value.
    type p256Element [4]uint64
    
    // p256One is one in the Montgomery domain.
    var p256One = p256Element{0x0000000000000001, 0xffffffff00000000,
    	0xffffffffffffffff, 0x00000000fffffffe}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top