Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for a$ (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

            given:
            createDirs("a", "b")
            file('settings.gradle') << """
    include 'a', 'b'
    """
    
            and:
            buildFile << """
    allprojects { group = 'test' }
    project(":a") {
        configurations { 'default' {} }
    }
    
    project(":b") {
        configurations { compile }
        dependencies { compile(project(':a')) { artifact { name = 'b'; type = 'jar' } } }
        task test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K 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. docs/uk/docs/index.md

    ---
    
    ## **Typer**, FastAPI CLI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. android/guava-tests/test/com/google/common/collect/MultisetsTest.java

      }
    
      public void testSumEmptyNonempty() {
        Multiset<String> ms1 = HashMultiset.create();
        Multiset<String> ms2 = HashMultiset.create(Arrays.asList("a", "b", "a"));
        assertThat(Multisets.sum(ms1, ms2)).containsExactly("a", "b", "a");
      }
    
      public void testSumNonemptyEmpty() {
        Multiset<String> ms1 = HashMultiset.create(Arrays.asList("a", "b", "a"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top