- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 4,008 for pbcopy (0.03 sec)
-
Authenticator.kt
L1:/* L2: * Copyright (C) 2015 Square, Inc. 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/square/okhttp/okhttp/src/main/kotlin...Mon Jan 08 01:13:22 UTC 2024 5.5K bytes -
ApiAdminDictMappingAction.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/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7.2K bytes -
ApiAdminDictStemmeroverrideAction.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/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7.5K bytes -
KuromojiFileTest.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/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.3K bytes -
ImmutableSetHashFloodingDetectionBenchmark.java
L1:/* L2: * Copyright (C) 2019 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/benchmark/c...Thu Jun 03 20:16:35 UTC 2021 6.8K bytes -
TreeMultimapExplicitTest.java
2).inOrder(); L99: L100: TreeMultimap<String, Integer> copy = TreeMultimap.create(tree); L101: assertEquals(tree, copy); L102: assertThat(copy.keySet()).containsExactly("google", "tree").inOrder(); L103: assertThat(copy.get("google")).containsExactly(2, 6).inOrder(); L104: assertEquals(Ordering.natural(), copy.keyComparator()); L105: assertEquals(Ordering.natural(), copy.valueComparator()); L106: assertEquals(Ordering.natural(), copy.get("google").comparator()); L107: } L108: L109:...github.com/google/guava/guava-tests/test/com/go...Sat Oct 19 00:05:46 UTC 2024 8.4K bytes -
MockResponse.kt
L1:/* L2: * Copyright (C) 2020 Square, Inc. 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/square/okhttp/mockwebserver-deprecat...Mon Jan 08 01:13:22 UTC 2024 7.2K bytes -
ImmutableSetTest.java
<Integer>) set).table.length); L315: } L316: L317: public void testCopyOf_copiesImmutableSortedSet() { L318: ImmutableSortedSet<String> sortedSet = ImmutableSortedSet.of("a"); L319: ImmutableSet<String> copy = ImmutableSet.copyOf(sortedSet); L320: assertNotSame(sortedSet, copy); L321: } L322: L323: // TODO(b/172823566): Use mainline testToImmutableSet once CollectorTester is usable to java7. L324: public void testToImmutableSet_java7() { L325: ImmutableSet.Builder<String> zis = ...github.com/google/guava/android/guava-tests/tes...Wed Oct 30 16:15:19 UTC 2024 13.7K bytes -
TreeRangeMapTest.java
TreeRangeMap.create(); L708: rangeMap.put(Range.open(3, 7), 1); L709: rangeMap.put(Range.closed(9, 10), 2); L710: rangeMap.put(Range.closed(12, 16), 3); L711: L712: RangeMap<Integer, Integer> copy = TreeRangeMap.copyOf(rangeMap); L713: L714: assertEquals(rangeMap.asMapOfRanges(), copy.asMapOfRanges()); L715: } L716: L717: public void testCopyOfImmutableRangeMap() { L718: ImmutableRangeMap<Integer, Integer> rangeMap = L719: ImmutableRangeMap.<Integer, Integer>builder() L720:...github.com/google/guava/android/guava-tests/tes...Sun Oct 06 13:04:03 UTC 2024 29.9K bytes -
Collections2.java
methods, such as {@code size()}, iterate across every L74: * element in the underlying collection and determine which elements satisfy the filter. When a L75: * live view is <i>not</i> needed, it may be faster to copy {@code Iterables.filter(unfiltered, L76: * predicate)} and use the copy. L77: * L78: * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>, as documented at L79: * {@link Predicate#apply}. Do not provide a predicate such as {@code L80: * Predicates.in...github.com/google/guava/android/guava/src/com/g...Fri Oct 18 20:24:49 UTC 2024 22.8K bytes