Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for REVERSED (0.13 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractBiMapTester.java

        for (Entry<K, V> entry : entries) {
          Entry<V, K> reversed = reverseEntry(entry);
          BiMap<V, K> inv = getMap().inverse();
          assertFalse(
              "Inverse should not contain entry " + reversed, inv.entrySet().contains(reversed));
          assertFalse(
              "Inverse should not contain key " + reversed.getKey(),
              inv.containsKey(reversed.getKey()));
          assertFalse(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/google/AbstractBiMapTester.java

        for (Entry<K, V> entry : entries) {
          Entry<V, K> reversed = reverseEntry(entry);
          BiMap<V, K> inv = getMap().inverse();
          assertFalse(
              "Inverse should not contain entry " + reversed, inv.entrySet().contains(reversed));
          assertFalse(
              "Inverse should not contain key " + reversed.getKey(),
              inv.containsKey(reversed.getKey()));
          assertFalse(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProvider.java

            .thenComparing(comparing(PerformanceReportScenario::isFlaky).reversed())
            .thenComparing(PerformanceReportScenario::isSuccessful)
            .thenComparing(comparing(PerformanceReportScenario::isBuildFailed).reversed())
            .thenComparing(comparing(PerformanceReportScenario::isAboutToRegress).reversed())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessDetectionPerformanceExecutionDataProvider.java

            comparing(PerformanceReportScenario::isBuildFailed).reversed()
                .thenComparing(PerformanceReportScenario::isSuccessful)
                .thenComparing(comparing(PerformanceReportScenario::isBuildFailed).reversed())
                .thenComparing(comparing(org.gradle.performance.results.report.FlakinessDetectionPerformanceExecutionDataProvider::isFlaky).reversed())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/LimitedDescription.java

        public String toString() {
            if (content.size() == 0) {
                return "<<empty>>";
            }
    
            StringBuilder out = new StringBuilder();
            List<String> reversed = Lists.reverse(content);
            for (Object item : reversed) {
                out.append(item).append("\n");
            }
    
            return out.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CallHandshakeTest.kt

        platform.assumeNotConscrypt()
        platform.assumeNotBouncyCastle()
    
        val reversed = ConnectionSpec.COMPATIBLE_TLS.cipherSuites!!.reversed()
        val client =
          makeClient(
            ConnectionSpec.COMPATIBLE_TLS,
            TlsVersion.TLS_1_2,
            reversed,
          )
    
        makeRequest(client)
    
        val expectedConnectionCipherSuites = expectedConnectionCipherSuites(client)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/slices/sort_test.go

    		d[i].b = i
    	}
    }
    
    // InOrder checks if a-equal elements were not reordered.
    // If reversed is true, expect reverse ordering.
    func (d intPairs) inOrder(reversed bool) bool {
    	lastA, lastB := -1, 0
    	for i := 0; i < len(d); i++ {
    		if lastA != d[i].a {
    			lastA = d[i].a
    			lastB = d[i].b
    			continue
    		}
    		if !reversed {
    			if d[i].b <= lastB {
    				return false
    			}
    		} else {
    			if d[i].b >= lastB {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 19:20:55 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubstitutorProvider.kt

                    }
                    dfs(superClassSymbol)
                    check(stack.removeLast().second == superClassSymbol)
                }
            }
    
            dfs(baseSymbol)
            return result?.reversed()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

              except KeyError:
                pass
            retval_input_node_name = op.inputs[0].op.name
            output_renaming_map[retval_input_node_name] = expected_node_name
    
      for node in reversed(graph_def.node):
        if node.name in output_renaming_map:
          node.name = output_renaming_map[node.name]
        elif node.op == '_Retval':
          graph_def.node.remove(node)
        else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Comparators.java

       * // returns {"elephant", "banana"}
       * }</pre>
       *
       * <p>This {@code Collector} uses O(k) memory and takes expected time O(n) (worst-case O(n log
       * k)), as opposed to e.g. {@code Stream.sorted(comparator.reversed()).limit(k)}, which currently
       * takes O(n log n) time and O(n) space.
       *
       * @throws IllegalArgumentException if {@code k < 0}
       * @since 33.2.0 (available since 22.0 in guava-jre)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top