Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 236 for help (0.02 sec)

  1. JdkBackedImmutableSet.java

    L48: return delegate.contains(object); L49: } L50: L51: @Override L52: boolean isPartialView() { L53: return false; L54: } L55: L56: @Override L57: public int size() { L58: return delegateList.size(); L59: } L60: L61: // redeclare to help optimizers with b/310253115 L62: @SuppressWarnings("RedundantOverride") L63: @Override L64: @J2ktIncompatible // serialization L65: @GwtIncompatible // serialization L66: Object writeReplace() { L67: return super.writeReplace(); L68: } L69:}...
    github.com/google/guava/guava/src/com/google/co...
    Thu Nov 30 21:54:06 UTC 2023
      2K bytes
  2. maven.yml

    L1:# This workflow will build a Java project with Maven L2:# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven L3: L4:name: Java CI with Maven L5: L6:on: L7: push: L8: branches: L9: - master L10: - "*.x" L11: pull_request: L12: branches: L13: - master L14: - "*.x" L15: workflow_dispatch: L16: L17:jobs: L18: build: L19: runs-on: macos-14 L20: timeout-minutes: 15 L21: steps: L22: - uses: actions/checkout@v4...
    github.com/codelibs/fess/.github/workflows/mave...
    Sat Feb 10 11:19:11 UTC 2024
      1.1K bytes
  3. CartesianList.java

    axisIndex = getAxisIndexForProductIndex(index, axis); L130: return axes.get(axis).get(axisIndex); L131: } L132: L133: @Override L134: boolean isPartialView() { L135: return true; L136: } L137: L138: // redeclare to help optimizers with b/310253115 L139: @SuppressWarnings("RedundantOverride") L140: @J2ktIncompatible // serialization L141: @Override L142: @GwtIncompatible // serialization L143: Object writeReplace() { L144: return super.writeReplace();...
    github.com/google/guava/android/guava/src/com/g...
    Thu Nov 30 21:54:06 UTC 2023
      4.8K bytes
  4. ImmutableSortedAsList.java

    return CollectSpliterators.indexed( L92: size(), L93: ImmutableList.SPLITERATOR_CHARACTERISTICS | Spliterator.SORTED | Spliterator.DISTINCT, L94: delegateList()::get, L95: comparator()); L96: } L97: L98: // redeclare to help optimizers with b/310253115 L99: @SuppressWarnings("RedundantOverride") L100: @Override L101: @J2ktIncompatible // serialization L102: @GwtIncompatible // serialization L103: Object writeReplace() { L104: return super.writeReplace(); L105:...
    github.com/google/guava/guava/src/com/google/co...
    Thu Nov 30 21:54:06 UTC 2023
      3.6K bytes
  5. advance.jsp

    > L77: <em class="fa fa-fw fa-sign-in"> L78: <la:message key="labels.login" /> L79: </la:link></li> L80: </c:when> L81: </c:choose> L82: <li class="nav-item"><la:link href="/help" styleClass="nav-link help-link"> L83: <em class="fa fa-fw fa-question-circle"> L84: <la:message key="labels.index_help" /> L85: </la:link></li> L86: </ul> L87: </div> L88: </div> L89: </nav> L90: </header> L91: L92: <main...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      14.9K bytes
  6. ImmutableMapValues.java

    ); L80: } L81: L82: @Override L83: boolean isPartialView() { L84: return true; L85: } L86: L87: @Override L88: public int size() { L89: return entryList.size(); L90: } L91: L92: // redeclare to help optimizers with b/310253115 L93: @SuppressWarnings("RedundantOverride") L94: @Override L95: @J2ktIncompatible // serialization L96: @GwtIncompatible // serialization L97: Object writeReplace() { L98: return super.writeReplace();...
    github.com/google/guava/android/guava/src/com/g...
    Thu Nov 30 21:54:06 UTC 2023
      3K bytes
  7. RegularImmutableAsList.java

    (); L82: } L83: L84: @Override L85: int internalArrayEnd() { L86: return delegateList.internalArrayEnd(); L87: } L88: L89: @Override L90: public E get(int index) { L91: return delegateList.get(index); L92: } L93: L94: // redeclare to help optimizers with b/310253115 L95: @SuppressWarnings("RedundantOverride") L96: @Override L97: @J2ktIncompatible // serialization L98: @GwtIncompatible // serialization L99: Object writeReplace() { L100: return super.writeReplace(); L101: } L102:}...
    github.com/google/guava/android/guava/src/com/g...
    Thu Nov 30 21:54:06 UTC 2023
      3K bytes
  8. ImmutableMapKeySet.java

    L70: public void forEach(Consumer<? super K> action) { L71: checkNotNull(action); L72: map.forEach((k, v) -> action.accept(k)); L73: } L74: L75: @Override L76: boolean isPartialView() { L77: return true; L78: } L79: L80: // redeclare to help optimizers with b/310253115 L81: @SuppressWarnings("RedundantOverride") L82: @Override L83: @J2ktIncompatible // serialization L84: @GwtIncompatible // serialization L85: Object writeReplace() { L86: return super.writeReplace(); L87: } L88:...
    github.com/google/guava/guava/src/com/google/co...
    Thu Nov 30 21:54:06 UTC 2023
      2.7K bytes
  9. DescendingImmutableSortedSet.java

    (index == -1) { L115: return index; L116: } else { L117: return size() - 1 - index; L118: } L119: } L120: L121: @Override L122: boolean isPartialView() { L123: return forward.isPartialView(); L124: } L125: L126: // redeclare to help optimizers with b/310253115 L127: @SuppressWarnings("RedundantOverride") L128: @Override L129: @J2ktIncompatible // serialization L130: Object writeReplace() { L131: return super.writeReplace(); L132: } L133:}...
    github.com/google/guava/guava/src/com/google/co...
    Thu Nov 30 21:54:06 UTC 2023
      3.3K bytes
  10. PULL_REQUEST_TEMPLATE.md

    commit and avoid L59:linking directly to the master branch. This ensures that links reference a L60:specific point in time, rather than a document that may change over time. L61: L62:See here for guidance on getting permanent links to files: https://help.github.com/en/articles/getting-permanent-links-to-files L63: L64:Please use the following format for linking documentation: L65:- [KEP]: <link> L66:- [Usage]: <link> L67:- [Other doc]: <link> L68:--> L69:```docs L70: L71:```...
    github.com/kubernetes/kubernetes/.github/PULL_R...
    Sun Aug 01 08:59:21 UTC 2021
      2.8K bytes
Back to top