Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for aacc (0.14 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/internal/obj/arm64/asm7.go

    	/* arithmetic operations */
    	{AADD, C_ZREG, C_ZREG, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{AADD, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{AADC, C_ZREG, C_ZREG, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{AADC, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{ANEG, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 25, 4, 0, 0, 0},
    	{ANEG, C_NONE, C_NONE, C_NONE, C_ZREG, C_NONE, 25, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            AccessorKind(String description, String constructorParams) {
                this.description = description;
                this.constructorParams = constructorParams;
                this.variablePrefix = name().charAt(0) + "acc";
            }
    
            public String getDescription() {
                return description;
            }
    
            public String getClassNameSuffix() {
                return StringUtils.capitalize(name()) + "Accessors";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    MIIC7jCCAdagAwIBAgIBADANBgkqhkiG9w0BAQsFADAaMQswCQYDVQQKEwJjYTEL
    MAkGA1UEAxMCY2EwHhcNMTYwODI4MTgxOTQ1WhcNMjEwODI3MTgxOTQ1WjAAMIIB
    IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp3E+Jl6DpgzogHUW/i/AAcCM
    fnNJLOamNVKFGmmxhb4XTHxRaWoTzrlsyzIMS0WzivvJeZVe6mWbvuP2kZanKgIz
    35YXRTR9HbqkNTMuvnpUESzWxbGWE2jmt2+a/Jnz89FS4WIYRhF7nI2z8PvZOfrI
    2gETTT2tEpoF2S4soaYfm0DBeT8K0/rogAaf+oeUS6V+v3miRcAooJgpNJGu9kqm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm_arm64.s

    	RET
    /* ---------------------------------------*/
    // func p256NegCond(val *p256Element, cond int)
    TEXT ·p256NegCond(SB),NOSPLIT,$0
    	MOVD	val+0(FP), a_ptr
    	MOVD	cond+8(FP), hlp0
    	MOVD	a_ptr, res_ptr
    	// acc = poly
    	MOVD	$-1, acc0
    	MOVD	p256const0<>(SB), acc1
    	MOVD	$0, acc2
    	MOVD	p256const1<>(SB), acc3
    	// Load the original value
    	LDP	0*16(a_ptr), (t0, t1)
    	LDP	1*16(a_ptr), (t2, t3)
    	// Speculatively subtract
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top