Search Options

Results per page
Sort
Preferred Languages
Advance

Results 371 - 380 of 4,008 for pbcopy (0.06 sec)

  1. LittleEndianDataOutputStreamTest.java

    L1:/* L2: * Copyright (C) 2010 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...
    Tue Jul 23 14:22:54 UTC 2024
      4.7K bytes
  2. LittleEndianDataOutputStreamTest.java

    L1:/* L2: * Copyright (C) 2010 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/android/guava-tests/tes...
    Tue Jul 23 14:22:54 UTC 2024
      4.7K bytes
  3. AbstractPackageSanityTestsTest.java

    L1:/* L2: * Copyright (C) 2012 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-testlib/test/com/...
    Tue Jun 11 21:37:55 UTC 2019
      5.3K bytes
  4. ReflectionFreeAssertThrows.java

    L1:/* L2: * Copyright (C) 2024 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-testlib/test/com/...
    Tue Oct 22 13:49:09 UTC 2024
      6.3K bytes
  5. HashStringBenchmark.java

    L1:/* L2: * Copyright (C) 2017 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...
    Sat Oct 19 00:26:48 UTC 2024
      5.2K bytes
  6. ImmutableMultisetTest.java

    Collection<String> c = ImmutableMultiset.of("a", "b", "a"); L464: Collection<String> copy = SerializableTester.reserializeAndAssert(c); L465: assertThat(copy).containsExactly("a", "a", "b").inOrder(); L466: } L467: L468: @J2ktIncompatible L469: @GwtIncompatible // SerializableTester L470: public void testSerialization_elementSet() { L471: Multiset<String> c = ImmutableMultiset.of("a", "b", "a"); L472: Collection<String> copy = LenientSerializableTester.reserializeAndAssertLenient(c.elementSet());...
    github.com/google/guava/android/guava-tests/tes...
    Wed Oct 30 16:15:19 UTC 2024
      20.8K bytes
  7. FessAdminAction.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
      5.2K bytes
  8. KuromojiCSVUtil.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:37:57 UTC 2024
      3.9K bytes
  9. ArrayTable.java

    rowKeyToIndex = table.rowKeyToIndex; L181: columnKeyToIndex = table.columnKeyToIndex; L182: @SuppressWarnings("unchecked") L183: @Nullable L184: V[][] copy = (@Nullable V[][]) new Object[rowList.size()][columnList.size()]; L185: array = copy; L186: for (int i = 0; i < rowList.size(); i++) { L187: arraycopy(table.array[i], 0, copy[i], 0, table.array[i].length); L188: } L189: } L190: L191: private abstract static class ArrayMap<K, V extends @Nullable Object> L192: extends I...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      26.3K bytes
  10. EncodingFilter.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
      6.9K bytes
Back to top