Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for aacc (0.4 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/UserTypesCodecTest.kt

                equalTo(1024)
            )
        }
    
        sealed class Peano {
    
            companion object {
    
                fun fromInt(n: Int): Peano = (0 until n).fold(Z as Peano) { acc, _ -> S(acc) }
            }
    
            fun toInt(): Int = sequence().count() - 1
    
            object Z : Peano() {
                override fun toString() = "Z"
            }
    
            data class S(val n: Peano) : Peano() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/a.out.go

    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p arm64
    
    const (
    	AADC = obj.ABaseARM64 + obj.A_ARCHSPECIFIC + iota
    	AADCS
    	AADCSW
    	AADCW
    	AADD
    	AADDS
    	AADDSW
    	AADDW
    	AADR
    	AADRP
    	AAESD
    	AAESE
    	AAESIMC
    	AAESMC
    	AAND
    	AANDS
    	AANDSW
    	AANDW
    	AASR
    	AASRW
    	AAT
    	ABCC
    	ABCS
    	ABEQ
    	ABFI
    	ABFIW
    	ABFM
    	ABFMW
    	ABFXIL
    	ABFXILW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  3. cmd/prepare-storage.go

    	// up `minioMetaTmpBucket` for the current run.
    	//
    	// /disk1/.minio.sys/tmp-old/
    	//  |__ 33a58b40-aecc-4c9f-a22f-ff17bfa33b62
    	//  |__ e870a2c1-d09c-450c-a69c-6eaa54a89b3e
    	//
    	// In this example, `33a58b40-aecc-4c9f-a22f-ff17bfa33b62` directory contains
    	// temporary objects from one of the previous runs of minio server.
    	tmpID := mustGetUUID()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/go/constant/value.go

    	switch x := x.(type) {
    	case int64Val:
    		f := float32(x)
    		return f, int64Val(f) == x
    	case intVal:
    		f, acc := newFloat().SetInt(x.val).Float32()
    		return f, acc == big.Exact
    	case ratVal:
    		return x.val.Float32()
    	case floatVal:
    		f, acc := x.val.Float32()
    		return f, acc == big.Exact
    	case unknownVal:
    		return 0, false
    	default:
    		panic(fmt.Sprintf("%v not a Float", x))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

                    "7a8236d6-6bec-4176-b6a1-f869c02183c3",
                    "089f4195-881c-4f9e-8bc1-124531dee977",
                    "46ffda62-768a-4864-9581-cc75eafe1a67",
                    "1d6226f6-dacc-42a9-bd88-7aab1f59df74",
                    "0948ed55-c25e-4319-9801-5f817bac09b5",
                    "2fd52f5e-b856-47ad-9e58-45c1d0ba437b",
                    "6c325bd0-ac6b-4391-a5c5-caa160972fa2",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/a.out.go

    	ASTCKF
    
    	// macros
    	ACLEAR
    
    	// crypto
    	AKM
    	AKMC
    	AKLMD
    	AKIMD
    	AKDSA
    	AKMA
    	AKMCTR
    
    	// vector
    	AVA
    	AVAB
    	AVAH
    	AVAF
    	AVAG
    	AVAQ
    	AVACC
    	AVACCB
    	AVACCH
    	AVACCF
    	AVACCG
    	AVACCQ
    	AVAC
    	AVACQ
    	AVACCC
    	AVACCCQ
    	AVN
    	AVNC
    	AVAVG
    	AVAVGB
    	AVAVGH
    	AVAVGF
    	AVAVGG
    	AVAVGL
    	AVAVGLB
    	AVAVGLH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm.go

    	x &= x >> 2
    	x &= x >> 1
    	return int(x & 1)
    }
    
    // p256Equal returns 1 if a and b are equal and 0 otherwise.
    func p256Equal(a, b *p256Element) int {
    	var acc uint64
    	for i := range a {
    		acc |= a[i] ^ b[i]
    	}
    	return uint64IsZero(acc)
    }
    
    // isInfinity returns 1 if p is the point at infinity and 0 otherwise.
    func (p *P256Point) isInfinity() int {
    	return p256Equal(&p.z, &p256Zero)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. cmd/admin-handlers-users.go

    					}
    				}
    				svcAccts[user] = madmin.SRSvcAccCreate{
    					Parent:        acc.Credentials.ParentUser,
    					AccessKey:     user,
    					SecretKey:     acc.Credentials.SecretKey,
    					Groups:        acc.Credentials.Groups,
    					Claims:        claims,
    					SessionPolicy: json.RawMessage(policyJSON),
    					Status:        acc.Credentials.Status,
    					Name:          sa.Name,
    					Description:   sa.Description,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. cmd/sts-handlers_test.go

    		Secure: s.secure,
    	})
    	if err != nil {
    		c.Fatalf("Err creating user admin client: %v", err)
    	}
    	userAdmClient.SetCustomTransport(s.TestSuiteCommon.client.Transport)
    
    	// Create svc acc
    	cr := c.mustCreateSvcAccount(ctx, value.AccessKeyID, userAdmClient)
    
    	svcClient := s.getUserClient(c, cr.AccessKey, cr.SecretKey, "")
    
    	// 1. Check S3 access for service account ListObjects()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/asm5.go

    			opset(ARSB, r0)
    			opset(AADC, r0)
    			opset(ASBC, r0)
    			opset(ARSC, r0)
    
    		case AORR:
    			opset(AEOR, r0)
    			opset(ABIC, r0)
    
    		case ACMP:
    			opset(ATEQ, r0)
    			opset(ACMN, r0)
    			opset(ATST, r0)
    
    		case AMVN:
    			break
    
    		case ABEQ:
    			opset(ABNE, r0)
    			opset(ABCS, r0)
    			opset(ABHS, r0)
    			opset(ABCC, r0)
    			opset(ABLO, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top