Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for component (0.26 sec)

  1. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * Percent encoding is used in every URL component except for the hostname. But the set of
     * characters that need to be encoded is different for each component. For example, the path
     * component must escape all of its `?` characters, otherwise it could be interpreted as the
     * start of the URL's query. But within the query and fragment components, the `?` character
     * doesn't delimit anything and doesn't need to be escaped.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

       * failed future if any of the items fails.
       *
       * <p>Canceling this future will attempt to cancel all the component futures, and if any of the
       * provided futures fails or is canceled, this one is, too.
       *
       * @param futures futures to combine
       * @return a future that provides a list of the results of the component futures
       * @since 10.0
       */
      @SafeVarargs
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  3. common/scripts/metallb-native.yaml

      - port: 443
        targetPort: 9443
      selector:
        component: controller
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        app: metallb
        component: controller
      name: controller
      namespace: metallb-system
    spec:
      revisionHistoryLimit: 3
      selector:
        matchLabels:
          app: metallb
          component: controller
      template:
        metadata:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeToken.java

        }
        // array is covariant. component type is subtype, so is the array type.
        // requireNonNull is safe because we call getArraySubtype only when isArray().
        TypeToken<?> componentSubtype =
            requireNonNull(getComponentType()).getSubtype(subclassComponentType);
        @SuppressWarnings("unchecked") // component type is subtype, so is array type.
        TypeToken<? extends T> result =
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

     * The server
     * component may a traditional NetBIOS name, a DNS name, or IP
     * address. These name resolution mechanisms and their resolution order
     * can be changed (See <a href="../../../resolver.html">Setting Name
     * Resolution Properties</a>). The servername and path components are
     * not case sensitive but the domain, username, and password components
     * are. It is also likely that properties must be specified for jcifs
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

             *    package my.component
             *    class foo { .. }  // A
             *    ..
             *    fun test() {
             *      val foo = ..    // B
             *      my.component.foo::class.java  // If we drop `my.component`, it will reference `B` instead of `A`
             *    }
             */
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

          )
          .override(
            Encoding.SKIP,
            ':'.code,
            '/'.code,
            '\\'.code,
            '?'.code,
            '#'.code,
          )
          .test(UrlComponentEncodingTester.Component.USER)
      }
    
      @Test
      fun passwordCharacters() {
        if (!isJvm) return // TODO: this test is broken on non-JVM platforms.
        UrlComponentEncodingTester.newInstance()
          .override(
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 67.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // If the finalizer list is processed in order, then this can lead to a situation
      // in which the component responsible for the first finalizer in the list is
      // waiting for a signal (field value, external system, or other) produced by a
      // component responsible for a finalizer later in the list, resulting in a deadlock.
      // Without enforced ordering finalizers are free to order amongst themselves and
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  9. kotlin-js-store/yarn.lock

      dependencies:
        "@jridgewell/resolve-uri" "^3.0.3"
        "@jridgewell/sourcemap-codec" "^1.4.10"
    
    "@socket.io/component-emitter@~3.1.0":
      version "3.1.0"
      resolved "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz#96116f2a912e0c02817345b3c10751069920d553"
      integrity sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jul 22 12:28:51 GMT 2023
    - 87.4K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                //re-render the time pickers because changing...
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
Back to top