Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Pinning (0.07 sec)

  1. .github/workflows/ci.yml

          - master
      pull_request:
        branches:
          - master
    
    permissions:
      contents: read
    
    jobs:
      test:
        permissions:
          actions: write  # for styfle/cancel-workflow-action to cancel/stop running workflows
          contents: read  # for actions/checkout to fetch code
        name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }} on ${{ matrix.os }}"
        strategy:
          matrix:
            os: [ ubuntu-latest ]
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 19:19:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/Types.java

            return JAVA7.usedInGenericType(type);
          }
    
          /*
           * We use this only when getTypeName is available.
           *
           * Well, really, we use this when we think we're running under Java 8, as determined by some
           * logic in the static initializer, which does not check for getTypeName specifically. We
           * should really validate that it works as desired for all Android versions that we support.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt

            success = true
          } catch (e: RejectedExecutionException) {
            failRejected(e)
          } finally {
            if (!success) {
              client.dispatcher.finished(this) // This call is no longer running!
            }
          }
        }
    
        internal fun failRejected(e: RejectedExecutionException? = null) {
          val ioException = InterruptedIOException("executor rejected")
          ioException.initCause(e)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  4. docs/recipes.md

              println(response.body!!.string())
            }
          }
    
          companion object {
            /**
             * The imgur client ID for OkHttp recipes. If you're using imgur for anything other than running
             * these examples, please request your own client ID! https://api.imgur.com/oauth2
             */
            private val IMGUR_CLIENT_ID = "9199fdef135c122"
            private val MEDIA_TYPE_PNG = "image/png".toMediaType()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/Types.java

            return JAVA7.usedInGenericType(type);
          }
    
          /*
           * We use this only when getTypeName is available.
           *
           * Well, really, we use this when we think we're running under Java 8, as determined by some
           * logic in the static initializer, which does not check for getTypeName specifically. We
           * should really validate that it works as desired for all Android versions that we support.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  6. guava-gwt/pom.xml

                    -->
                  <extraJvmArgs>-Dgwt.watchFileChanges=false</extraJvmArgs>
                </configuration>
              </execution>
              <!--
                GWT issues some scary warnings while running tests, but I believe they are harmless.
                Let's take the warnings for one module, c.g.c.base.testModule, as an example:
    
                  [INFO] Validating units:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

         */
        public void setRunner(final OpenSearchRunner runner) {
            this.runner = runner;
        }
    
        /**
         * Checks if the search engine is running in embedded mode.
         *
         * @return true if running in embedded mode, false otherwise
         */
        public boolean isEmbedded() {
            return runner != null;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top