Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 791 - 800 of 1,690 for xtrue (0.14 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android-test-app/src/main/kotlin/okhttp/android/testapp/TestApplication.kt

          getProcessName()
        } else {
          Class
            .forName("android.app.ActivityThread")
            .getDeclaredMethod("currentProcessName")
            .apply { isAccessible = true }
            .invoke(null) as String
        }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Aug 19 08:10:39 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/ArrayTable.java

        }
      }
    
      /**
       * Returns {@code true} if the provided keys are among the keys provided when the table was
       * constructed.
       */
      @Override
      public boolean contains(@Nullable Object rowKey, @Nullable Object columnKey) {
        return containsRow(rowKey) && containsColumn(columnKey);
      }
    
      /**
       * Returns {@code true} if the provided column key is among the column keys provided when the
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Aug 13 19:39:21 GMT 2025
    - 26.2K bytes
    - Click Count (0)
  3. .github/workflows/ci.yml

              cache: 'maven'
          - name: 'Install'
            shell: bash
            run: ./mvnw -B -ntp -Dtoolchain.skip install -U -DskipTests=true -f $ROOT_POM
          - name: 'Test'
            shell: bash
            run: ./mvnw -B -ntp -P!standard-with-extra-repos -Dtoolchain.skip verify -U -Dmaven.javadoc.skip=true -Dsurefire.toolchain.version=${{ matrix.java }} -f $ROOT_POM
          - name: 'Print Surefire reports'
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 22:02:44 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/hash/MessageDigestHashFunction.java

        this.bytes = bytes;
        this.supportsClone = supportsClone(prototype);
      }
    
      private static boolean supportsClone(MessageDigest digest) {
        try {
          Object unused = digest.clone();
          return true;
        } catch (CloneNotSupportedException e) {
          return false;
        }
      }
    
      @Override
      public int bits() {
        return bytes * Byte.SIZE;
      }
    
      @Override
      public String toString() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Feb 13 17:34:21 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/io/LineBuffer.java

              line.append(cbuf, start, pos - start);
              sawReturn = true;
              if (pos + 1 < end) {
                if (finishLine(cbuf[pos + 1] == '\n')) {
                  pos++;
                }
              }
              start = pos + 1;
              break;
    
            case '\n':
              line.append(cbuf, start, pos - start);
              finishLine(true);
              start = pos + 1;
              break;
    
            default:
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Jan 18 02:54:30 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  6. guava/src/com/google/common/collect/ArrayTable.java

        }
      }
    
      /**
       * Returns {@code true} if the provided keys are among the keys provided when the table was
       * constructed.
       */
      @Override
      public boolean contains(@Nullable Object rowKey, @Nullable Object columnKey) {
        return containsRow(rowKey) && containsColumn(columnKey);
      }
    
      /**
       * Returns {@code true} if the provided column key is among the column keys provided when the
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 26.9K bytes
    - Click Count (0)
  7. guava/src/com/google/common/collect/ImmutableSet.java

        }
      }
    
      ImmutableSet() {}
    
      /** Returns {@code true} if the {@code hashCode()} method runs quickly. */
      boolean isHashCodeFast() {
        return false;
      }
    
      @Override
      public boolean equals(@Nullable Object object) {
        if (object == this) {
          return true;
        }
        if (object instanceof ImmutableSet
            && isHashCodeFast()
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Nov 07 16:09:47 GMT 2025
    - 35.3K bytes
    - Click Count (0)
  8. build-logic/src/main/kotlin/okhttp.dokka-multimodule-conventions.gradle.kts

    val okhttpDokka: String? by project
    val dokkaBuild = okhttpDokka?.toBoolean() == true
    
    if (dokkaBuild) {
      apply(plugin = "org.jetbrains.dokka")
    
      dependencies {
        add("dokka", project(":okhttp"))
        add("dokka", project(":okhttp-brotli"))
        add("dokka", project(":okhttp-coroutines"))
        add("dokka", project(":okhttp-dnsoverhttps"))
        add("dokka", project(":okhttp-java-net-cookiejar"))
        add("dokka", project(":logging-interceptor"))
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 822 bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

         */
        public CopyOptions excludeNull() {
            excludesNull = true;
            return this;
        }
    
        /**
         * Excludes properties with only whitespace from the operation.
         *
         * @return This instance itself
         */
        public CopyOptions excludeWhitespace() {
            excludesWhitespace = true;
            return this;
        }
    
        /**
         * Specifies the prefix.
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/core/collection/SingleValueIteratorTest.java

         *
         */
        @Test
        public void test() {
            final SingleValueIterator<String> it = new SingleValueIterator<String>("Foo");
            assertThat(it.hasNext(), is(true));
            assertThat(it.next(), is("Foo"));
            assertThat(it.hasNext(), is(not(true)));
        }
    
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat May 10 01:32:17 GMT 2025
    - 1.1K bytes
    - Click Count (0)
Back to Top