Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for knop (0.03 sec)

  1. guava/src/com/google/common/collect/TreeRangeMap.java

        if (mapEntryBelowToTruncate != null) {
          // we know ( [
          RangeMapEntry<K, V> rangeMapEntry = mapEntryBelowToTruncate.getValue();
          if (rangeMapEntry.getUpperBound().compareTo(rangeToRemove.lowerBound) > 0) {
            // we know ( [ )
            if (rangeMapEntry.getUpperBound().compareTo(rangeToRemove.upperBound) > 0) {
              // we know ( [ ] ), so insert the range ] ) back into the map --
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeRangeMap.java

        if (mapEntryBelowToTruncate != null) {
          // we know ( [
          RangeMapEntry<K, V> rangeMapEntry = mapEntryBelowToTruncate.getValue();
          if (rangeMapEntry.getUpperBound().compareTo(rangeToRemove.lowerBound) > 0) {
            // we know ( [ )
            if (rangeMapEntry.getUpperBound().compareTo(rangeToRemove.upperBound) > 0) {
              // we know ( [ ] ), so insert the range ] ) back into the map --
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	BVC CR6, LR                     // 4c9b0020
    	BVS CR6, LR                     // 4d9b0020
    	BVS 0(PC)                       // 41830000
    	JMP 8(PC)                       // 48000010
    
    	NOP
    	NOP R2
    	NOP F2
    	NOP $4
    
    	CRAND CR0GT, CR0EQ, CR0SO       // 4c620a02
    	CRANDN CR0GT, CR0EQ, CR0SO      // 4c620902
    	CREQV CR0GT, CR0EQ, CR0SO       // 4c620a42
    	CRNAND CR0GT, CR0EQ, CR0SO      // 4c6209c2
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Oct 29 13:14:38 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

        }
    
        try {
          if (method == NEXT_METHOD
              && targetException == null
              && knownOrder == KnownOrder.UNKNOWN_ORDER) {
            /*
             * We already know the iterator is an Iterator<E>, and now we know that
             * we called next(), so the returned element must be of type E.
             */
            @SuppressWarnings("unchecked")
            E targetReturnValueFromNext = (E) targetReturnValue;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

        }
    
        try {
          if (method == NEXT_METHOD
              && targetException == null
              && knownOrder == KnownOrder.UNKNOWN_ORDER) {
            /*
             * We already know the iterator is an Iterator<E>, and now we know that
             * we called next(), so the returned element must be of type E.
             */
            @SuppressWarnings("unchecked")
            E targetReturnValueFromNext = (E) targetReturnValue;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/FilteredKeyMultimap.java

        public boolean remove(@CheckForNull Object o) {
          if (o instanceof Entry) {
            Entry<?, ?> entry = (Entry<?, ?>) o;
            if (unfiltered.containsKey(entry.getKey())
                // if this holds, then we know entry.getKey() is a K
                && keyPredicate.apply((K) entry.getKey())) {
              return unfiltered.remove(entry.getKey(), entry.getValue());
            }
          }
          return false;
        }
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/security/oauth2-scopes.md

    Nevertheless, you still enforce those scopes, or any other security/authorization requirement, however you need, in your code.
    
    In many cases, OAuth2 with scopes can be an overkill.
    
    But if you know you need it, or you are curious, keep reading.
    
    ///
    
    ## OAuth2 scopes and OpenAPI
    
    The OAuth2 specification defines "scopes" as a list of strings separated by spaces.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 29 11:02:16 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. android/pom.xml

                       prod code. It's disabled automatically for "test code"
                       (which is good: our tests have intentional violations), but
                       Error Prone doesn't know it's building test code unless we
                       pass -XepCompilingTestOnlyCode, and that argument needs to
                       be passed as part of the same <arg> as -Xplugin:ErrorProne,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. pom.xml

                       prod code. It's disabled automatically for "test code"
                       (which is good: our tests have intentional violations), but
                       Error Prone doesn't know it's building test code unless we
                       pass -XepCompilingTestOnlyCode, and that argument needs to
                       be passed as part of the same <arg> as -Xplugin:ErrorProne,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/TreeBasedTable.java

      /**
       * Returns the comparator that orders the columns. With natural ordering, {@link
       * Ordering#natural()} is returned.
       *
       * @deprecated Store the {@link Comparator} alongside the {@link Table}. Or, if you know that the
       *     {@link Table} contains at least one value, you can retrieve the {@link Comparator} with:
       *     {@code ((SortedMap<C, V>) table.rowMap().values().iterator().next()).comparator();}.
       */
      @Deprecated
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top