Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 259 for keylen (0.12 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/HierarchicalAttributeContainerTest.groovy

            then:
            joined.keySet() == [one] as Set
    
            when:
            fallback.attributeProvider(two, Providers.of("fallback"))
    
            then:
            joined.keySet() == [one, two] as Set
    
            when:
            primary.attribute(two, "primary")
    
            then:
            joined.keySet() == [one, two] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 27 04:00:15 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/abt/avlint32_test.go

    // returned to allow comparison of calculated tree size
    // with expected.
    func (t *node32) wellFormedSubtree(parent *node32, keyMin, keyMax int32) (s string, i int) {
    	i = -1 // initialize to a failing value
    	s = "" // s is the reason for failure; empty means okay.
    
    	if keyMin >= t.key {
    		s = " min >= t.key"
    		return
    	}
    
    	if keyMax <= t.key {
    		s = " max <= t.key"
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/TreeMultimapExplicitTest.java

        SortedSet<@Nullable String> keySet = multimap.keySet();
    
        assertEquals(null, keySet.first());
        assertEquals("google", keySet.last());
        assertEquals(StringLength.COMPARATOR, keySet.comparator());
        assertEquals(Sets.<@Nullable String>newHashSet(null, "tree"), keySet.headSet("yahoo"));
        assertEquals(Sets.newHashSet("google"), keySet.tailSet("yahoo"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            exeProject.projectConfigurations.keySet() == projectConfigurations
            exeProject.projectConfigurations['win32Debug'].includePath == filePath("src/main/headers", "src/hello/headers")
    
            and:
            final libProject = projectFile("helloLib.vcxproj")
            libProject.assertHasComponentSources(app.library, "src/hello")
            libProject.projectConfigurations.keySet() == projectConfigurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/AbstractDirectedNetworkConnections.java

          @Override
          public UnmodifiableIterator<E> iterator() {
            Iterable<E> incidentEdges =
                (selfLoopCount == 0)
                    ? Iterables.concat(inEdgeMap.keySet(), outEdgeMap.keySet())
                    : Sets.union(inEdgeMap.keySet(), outEdgeMap.keySet());
            return Iterators.unmodifiableIterator(incidentEdges.iterator());
          }
    
          @Override
          public int size() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

      protected final void assertInvariants(Map<K, V> map) {
        Set<K> keySet = map.keySet();
        Collection<V> valueCollection = map.values();
        Set<Entry<K, V>> entrySet = map.entrySet();
    
        assertEquals(map.size() == 0, map.isEmpty());
        assertEquals(map.size(), keySet.size());
        assertEquals(keySet.size() == 0, keySet.isEmpty());
        assertEquals(!keySet.isEmpty(), keySet.iterator().hasNext());
    
        int expectedKeySetHash = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/handling-errors.md

    Sie müssten beispielsweise einem Client sagen:
    
    * Dass er nicht die notwendigen Berechtigungen hat, eine Aktion auszuführen.
    * Dass er zu einer Ressource keinen Zugriff hat.
    * Dass die Ressource, auf die er zugreifen möchte, nicht existiert.
    * usw.
    
    In diesen Fällen geben Sie normalerweise einen **HTTP-Statuscode** im Bereich **400** (400 bis 499) zurück.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:29 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/security/first-steps.md

    ## Was es macht
    
    FastAPI wird im Request nach diesem `Authorization`-Header suchen, prüfen, ob der Wert `Bearer` plus ein Token ist, und den Token als `str` zurückgeben.
    
    Wenn es keinen `Authorization`-Header sieht, oder der Wert keinen `Bearer`-Token hat, antwortet es direkt mit einem 401-Statuscode-Error (`UNAUTHORIZED`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/ProjectLevelModelCrossVersionSpec.groovy

            when:
            Map<String, CustomModel> result = withConnection { connection -> connection.action(new UseGradleBuildToFetchProjectModel()).run() }
    
            then:
            result != null
            result.keySet() == ['test', 'a', 'b', 'c'] as Set
            result.values()*.value as Set == [':', ':a', ':b', ':b:c'] as Set
    
            when:
            withConnector { connector ->
                connector.searchUpwards(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            outputContains("creating model with parameter='fetch1' for root project 'root'")
            outputContains("creating model with parameter='fetch2' for root project 'root'")
    
            and:
            models.keySet() ==~ [":"]
            models.values().every { it.size() == 4 }
    
            models[":"][0].message == "fetch1 It works from project :"
            models[":"][1].message == "fetch2 It works from project :"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top