Search Options

Results per page
Sort
Preferred Languages
Advance

Results 541 - 550 of 4,271 for pbcopy (0.04 sec)

  1. DoublesMethodsForWeb.java

    L1:/* L2: * Copyright (C) 2020 The Guava Authors L3: * L4: * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except L5: * in compliance with the License. You may obtain a copy of the License at L6: * L7: * http://www.apache.org/licenses/LICENSE-2.0 L8: * L9: * Unless required by applicable law or agreed to in writing, software distributed under the License L10: * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express...
    github.com/google/guava/guava-gwt/src-super/com...
    Thu Oct 26 00:50:12 UTC 2023
      1K bytes
  2. SingletonImmutableMapMapInterfaceTest.java

    L1:/* L2: * Copyright (C) 2008 The Guava Authors L3: * L4: * Licensed under the Apache License, Version 2.0 (the "License"); L5: * you may not use this file except in compliance with the License. L6: * You may obtain a copy of the License at L7: * L8: * http://www.apache.org/licenses/LICENSE-2.0 L9: * L10: * Unless required by applicable law or agreed to in writing, software L11: * distributed under the License is distributed on an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Mar 09 02:18:08 UTC 2022
      1.1K bytes
  3. LocaleUtilTest.java

    L1:/* L2: * Copyright 2012-2024 CodeLibs Project and the Others. L3: * L4: * Licensed under the Apache License, Version 2.0 (the "License"); L5: * you may not use this file except in compliance with the License. L6: * You may obtain a copy of the License at L7: * L8: * http://www.apache.org/licenses/LICENSE-2.0 L9: * L10: * Unless required by applicable law or agreed to in writing, software L11: * distributed under the License is distributed on an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS...
    github.com/codelibs/corelib/src/test/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      1.1K bytes
  4. MockHttp2Peer.kt

    L1:/* L2: * Copyright (C) 2011 The Android Open Source Project L3: * L4: * Licensed under the Apache License, Version 2.0 (the "License"); L5: * you may not use this file except in compliance with the License. L6: * You may obtain a copy of the License at L7: * L8: * http://www.apache.org/licenses/LICENSE-2.0 L9: * L10: * Unless required by applicable law or agreed to in writing, software L11: * distributed under the License is distributed on an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Thu Apr 11 22:09:35 UTC 2024
      8.7K bytes
  5. CharSink.java

    L1:/* L2: * Copyright (C) 2012 The Guava Authors L3: * L4: * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except L5: * in compliance with the License. You may obtain a copy of the License at L6: * L7: * http://www.apache.org/licenses/LICENSE-2.0 L8: * L9: * Unless required by applicable law or agreed to in writing, software distributed under the License L10: * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express...
    github.com/google/guava/android/guava/src/com/g...
    Thu Oct 31 14:20:11 UTC 2024
      6.8K bytes
  6. MultisetsCollectionTest.java

    L1:/* L2: * Copyright (C) 2008 The Guava Authors L3: * L4: * Licensed under the Apache License, Version 2.0 (the "License"); L5: * you may not use this file except in compliance with the License. L6: * You may obtain a copy of the License at L7: * L8: * http://www.apache.org/licenses/LICENSE-2.0 L9: * L10: * Unless required by applicable law or agreed to in writing, software L11: * distributed under the License is distributed on an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      9.6K bytes
  7. ImmutableTableTest.java

    L161: } L162: L163: private static <R, C, V> void validateViewOrdering(Table<R, C, V> original, Table<R, C, V> copy) { L164: assertThat(copy.cellSet()).containsExactlyElementsIn(original.cellSet()).inOrder(); L165: assertThat(copy.rowKeySet()).containsExactlyElementsIn(original.rowKeySet()).inOrder(); L166: assertThat(copy.values()).containsExactlyElementsIn(original.values()).inOrder(); L167: } L168: L169: public void testCopyOf() { L170: Table<Character, Integer, String> table =...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      18.5K bytes
  8. BiMapInverseTester.java

    L52: public void testInverseSerialization() { L53: BiMapPair<K, V> pair = new BiMapPair<>(getMap()); L54: BiMapPair<K, V> copy = SerializableTester.reserialize(pair); L55: assertEquals(pair.forward, copy.forward); L56: assertEquals(pair.backward, copy.backward); L57: assertSame(copy.backward, copy.forward.inverse()); L58: assertSame(copy.forward, copy.backward.inverse()); L59: } L60: L61: private static class BiMapPair<K, V> implements Serializable { L62: final BiMap<K, V>...
    github.com/google/guava/android/guava-testlib/s...
    Wed Jul 24 20:12:35 UTC 2024
      3K bytes
  9. HashMultisetTest.java

    SerializableTester L97: public void testSerializationContainingSelf() { L98: Multiset<Multiset<?>> multiset = HashMultiset.create(); L99: multiset.add(multiset, 2); L100: Multiset<Multiset<?>> copy = SerializableTester.reserialize(multiset); L101: assertEquals(2, copy.size()); L102: assertSame(copy, copy.iterator().next()); L103: } L104: L105: @J2ktIncompatible L106: @GwtIncompatible // Only used by @GwtIncompatible code L107: private static class MultisetHolder implements Serializable {...
    github.com/google/guava/android/guava-tests/tes...
    Sat Oct 19 00:05:46 UTC 2024
      4.4K bytes
  10. UnmodifiableCollectionTests.java

    = new ArrayList<>(); L120: siblingCollection.add(sampleElement); L121: L122: Collection<E> copy = new ArrayList<>(); L123: copy.addAll(collection); L124: L125: try { L126: collection.add(sampleElement); L127: fail("add succeeded on unmodifiable collection"); L128: } catch (UnsupportedOperationException expected) { L129: } L130: L131: assertCollectionsAreEquivalent(copy, collection); L132: L133: try { L134: collection.addAll(siblingCollection); L135: fail("addAll...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      14.6K bytes
Back to top