Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for 5120 (0.08 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go

    	SYS_SETFSGID                = 5121
    	SYS_GETSID                  = 5122
    	SYS_CAPGET                  = 5123
    	SYS_CAPSET                  = 5124
    	SYS_RT_SIGPENDING           = 5125
    	SYS_RT_SIGTIMEDWAIT         = 5126
    	SYS_RT_SIGQUEUEINFO         = 5127
    	SYS_RT_SIGSUSPEND           = 5128
    	SYS_SIGALTSTACK             = 5129
    	SYS_UTIME                   = 5130
    	SYS_MKNOD                   = 5131
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    	SYS_SETFSGID                = 5121
    	SYS_GETSID                  = 5122
    	SYS_CAPGET                  = 5123
    	SYS_CAPSET                  = 5124
    	SYS_RT_SIGPENDING           = 5125
    	SYS_RT_SIGTIMEDWAIT         = 5126
    	SYS_RT_SIGQUEUEINFO         = 5127
    	SYS_RT_SIGSUSPEND           = 5128
    	SYS_SIGALTSTACK             = 5129
    	SYS_UTIME                   = 5130
    	SYS_MKNOD                   = 5131
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/math/big/int_test.go

    }
    
    func BenchmarkBitset(b *testing.B) {
    	z := new(Int)
    	z.SetBit(z, 512, 1)
    	b.ResetTimer()
    	for i := b.N - 1; i >= 0; i-- {
    		z.SetBit(z, i&512, 1)
    	}
    }
    
    func BenchmarkBitsetNeg(b *testing.B) {
    	z := NewInt(-1)
    	z.SetBit(z, 512, 0)
    	b.ResetTimer()
    	for i := b.N - 1; i >= 0; i-- {
    		z.SetBit(z, i&512, 0)
    	}
    }
    
    func BenchmarkBitsetOrig(b *testing.B) {
    	z := new(Int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  4. src/net/tcpsock_test.go

    	}
    
    	for _, writev := range []bool{false, true} {
    		t.Run(fmt.Sprintf("writev=%v", writev), func(t *testing.T) {
    			ln := newLocalListener(t, "tcp")
    			defer ln.Close()
    
    			x := int(1 << 30)
    			x = x*5 + 1<<20 // just over 5 GB on 64-bit, just over 1GB on 32-bit
    			done := make(chan int)
    			go func() {
    				defer close(done)
    				c, err := ln.Accept()
    				if err != nil {
    					t.Error(err)
    					return
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. pom.xml

        <javaxAnnotationApiVersion>1.3.2</javaxAnnotationApiVersion>
        <jlineVersion>3.26.1</jlineVersion>
        <junitVersion>5.10.2</junitVersion>
        <jxpathVersion>1.3</jxpathVersion>
        <logbackClassicVersion>1.5.6</logbackClassicVersion>
        <mockitoVersion>5.12.0</mockitoVersion>
        <plexusInteractivityVersion>1.3</plexusInteractivityVersion>
        <plexusInterpolationVersion>1.27</plexusInterpolationVersion>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_table_ppc64le.s

    	/* x^229440 mod p(x), x^229376 mod p(x) */
    DATA ·IEEEConst+496(SB)/8,$0x0000000126835a30
    DATA ·IEEEConst+504(SB)/8,$0x000000017193f296
    
    	/* x^228416 mod p(x), x^228352 mod p(x) */
    DATA ·IEEEConst+512(SB)/8,$0x000000006241b502
    DATA ·IEEEConst+520(SB)/8,$0x0000000043f6c86a
    
    	/* x^227392 mod p(x), x^227328 mod p(x) */
    DATA ·IEEEConst+528(SB)/8,$0x00000000d5196ad4
    DATA ·IEEEConst+536(SB)/8,$0x000000016b513ec6
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  7. src/cmd/link/link_test.go

    var alignPcFnAddr uintptr
    
    func main() {
    	if alignPcFnAddr % 512 != 0 {
    		fmt.Printf("expected 512 bytes alignment, got %v\n", alignPcFnAddr)
    	} else {
    		fmt.Printf("PASS")
    	}
    }
    `
    
    var testFuncAlignAsmSources = map[string]string{
    	"arm64": `
    #include "textflag.h"
    
    TEXT	·alignPc(SB),NOSPLIT, $0-0
    	MOVD	$2, R0
    	PCALIGN	$512
    	MOVD	$3, R1
    	RET
    
    GLOBL	·alignPcFnAddr(SB),RODATA,$8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. releasenotes/notes/51204.yamml

    Ben Leggett <******@****.***> 1716502023 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 153 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			message:               "message not messageExpression",
    			messageExpression:     fmt.Sprintf(`"%s"`, genString(5121, 'a')),
    			costBudget:            celconfig.RuntimeCELCostBudget,
    			expectedLogErr:        "messageExpression beyond allowable length of 5120",
    			expectedValidationErr: "message not messageExpression",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. helm-releases/minio-5.1.0.tgz

    minio-5.1.0.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2024-03-03T17-50-39Z description: High Performance Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - minio - storage - object-storage - s3 - cluster maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 5.1.0 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 18:49:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top