Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for a$ (0.09 sec)

  1. src/crypto/md5/md5block.go

    		b = c + bits.RotateLeft32((((d^a)&c)^a)+b+x7+0xfd469501, 22)
    		a = b + bits.RotateLeft32((((c^d)&b)^d)+a+x8+0x698098d8, 7)
    		d = a + bits.RotateLeft32((((b^c)&a)^c)+d+x9+0x8b44f7af, 12)
    		c = d + bits.RotateLeft32((((a^b)&d)^b)+c+xa+0xffff5bb1, 17)
    		b = c + bits.RotateLeft32((((d^a)&c)^a)+b+xb+0x895cd7be, 22)
    		a = b + bits.RotateLeft32((((c^d)&b)^d)+a+xc+0x6b901122, 7)
    		d = a + bits.RotateLeft32((((b^c)&a)^c)+d+xd+0xfd987193, 12)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/nosql-databases-couchbase.md

    The analogy in **MongoDB** would be a "collection".
    
    In the code, a `Bucket` represents the main entrypoint of communication with the database.
    
    This utility function will:
    
    * Connect to a **Couchbase** cluster (that might be a single machine).
        * Set defaults for timeouts.
    * Authenticate in the cluster.
    * Get a `Bucket` instance.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/TaskOrderSpecsTest.groovy

            executedTasks << [
                [':a', ':b', ':c', ':e', ':d', ':f'],
                [':c', ':d', ':e', ':f', ':a', ':b'],
                [':z', ':a', ':d', ':e', ':f', ':c'],
                [':a', ':b', ':d', ':f', ':e', ':c'],
                []
            ]
        }
    
        def "can specify a task more than once in a complex rule"() {
            def spec = any(exact(':a', ':c'), exact(':b', ':d'), exact(':a', ':d'))
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/v1/zz_generated.defaults.go

    		if a.ClientConfig.Service != nil {
    			SetDefaults_ServiceReference(a.ClientConfig.Service)
    		}
    		for j := range a.Rules {
    			b := &a.Rules[j]
    			SetDefaults_Rule(&b.Rule)
    		}
    	}
    }
    
    func SetObjectDefaults_ValidatingWebhookConfigurationList(in *v1.ValidatingWebhookConfigurationList) {
    	for i := range in.Items {
    		a := &in.Items[i]
    		SetObjectDefaults_ValidatingWebhookConfiguration(a)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java

        resetWithHole();
        assertEquals(null, navigableMap.lowerEntry(a.getKey()));
        assertEquals(null, navigableMap.lowerKey(a.getKey()));
        assertEquals(a, navigableMap.lowerEntry(b.getKey()));
        assertEquals(a.getKey(), navigableMap.lowerKey(b.getKey()));
        assertEquals(a, navigableMap.lowerEntry(c.getKey()));
        assertEquals(a.getKey(), navigableMap.lowerKey(c.getKey()));
      }
    
      @CollectionSize.Require(SEVERAL)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java

        resetWithHole();
        assertEquals(null, navigableMap.lowerEntry(a.getKey()));
        assertEquals(null, navigableMap.lowerKey(a.getKey()));
        assertEquals(a, navigableMap.lowerEntry(b.getKey()));
        assertEquals(a.getKey(), navigableMap.lowerKey(b.getKey()));
        assertEquals(a, navigableMap.lowerEntry(c.getKey()));
        assertEquals(a.getKey(), navigableMap.lowerKey(c.getKey()));
      }
    
      @CollectionSize.Require(SEVERAL)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/algorithm_test.go

    					},
    				},
    			},
    		}, `{"array":[{"a":1,"b":"B"},{"a":"A","b":2}],"object":{"a":1,"b":"O"},"additionalProperties":{"x":{"a":1,"b":"beta"},"y":{"a":"alpha","b":2}},"foo":"bar"}`},
    		{"empty and null", `[{},{"a":1},{"a":0},{"a":0.0},{"a":""},{"a":null},{"a":[]},{"a":{}}]`, &structuralschema.Structural{
    			Items: &structuralschema.Structural{
    				Properties: map[string]structuralschema.Structural{
    					"a": {
    						Generic: structuralschema.Generic{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. test/codegen/rotate.go

    	a[10] = ^bits.RotateLeft64(a[9], 13)
    	// arm64: "BIC\tR[0-9]+@>51, R[0-9]+, R[0-9]+"
    	a[13] = a[12] &^ bits.RotateLeft64(a[11], 13)
    	// arm64: "EON\tR[0-9]+@>51, R[0-9]+, R[0-9]+"
    	a[16] = a[15] ^ ^bits.RotateLeft64(a[14], 13)
    	// arm64: "ORN\tR[0-9]+@>51, R[0-9]+, R[0-9]+"
    	a[19] = a[18] | ^bits.RotateLeft64(a[17], 13)
    	// arm64: "TST\tR[0-9]+@>51, R[0-9]+"
    	if a[18]&bits.RotateLeft64(a[19], 13) == 0 {
    		a[20] = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/net/resolverdialfunc_test.go

    	a.rbuf.WriteByte('Y') // reserved header for beu16 length
    	builder := dnsmessage.NewBuilder(a.rbuf.Bytes(), resh)
    	a.builder = &builder
    	if hadQ {
    		a.q = q
    		a.builder.StartQuestions()
    		err := a.builder.Question(q)
    		if err != nil {
    			return 0, fmt.Errorf("Question: %w", err)
    		}
    		a.builder.StartAnswers()
    		switch q.Type {
    		case dnsmessage.TypeA:
    			if a.h.HandleA != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue67547.go

    }
    
    func _[P []int | struct{}]() {
    	type A = []int
    	var a A
    	var p P
    	// preserve target type name A in error messages when using Alias types
    	a = p // ERRORx `cannot assign struct{} \(in P\) to (A|\[\]int)`
    	_ = a
    }
    
    func _[P any]() {
    	type A = P
    	var x A
    	// keep "constrained by" for aliased type parameters in error messages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top