Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for startsWith (0.18 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

     containsString("ring")) Parameters: substring - the substring that the returned matcher will expect to find within any examined string startsWith public static Matcher<java.lang.String> startsWith(java.lang.String prefix) Creates a matcher that matches if the examined String starts with the specified String. For example: assertThat("myStringOfNote", startsWith("my")) Parameters: prefix - the substring that the returned matcher will expect at the start of any examined string endsWith public static...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

    import assertk.assertions.isNotEmpty
    import assertk.assertions.isNotNull
    import assertk.assertions.isNotSameAs
    import assertk.assertions.isNull
    import assertk.assertions.isTrue
    import assertk.assertions.startsWith
    import assertk.fail
    import java.io.FileNotFoundException
    import java.io.IOException
    import java.io.InterruptedIOException
    import java.net.CookieManager
    import java.net.CookiePolicy
    import java.net.HttpCookie
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  3. okhttp-android/src/main/baseline-prof.txt

    HSPLkotlin/text/StringsKt__StringsJVMKt;->replace$default(Ljava/lang/String;CCZI)Ljava/lang/String;
    HSPLkotlin/text/StringsKt__StringsJVMKt;->startsWith$default(Ljava/lang/String;Ljava/lang/String;ZI)Z
    HSPLkotlin/text/StringsKt__StringsJVMKt;->startsWith(Ljava/lang/String;Ljava/lang/String;IZ)Z
    HSPLkotlin/text/StringsKt__StringsJVMKt;->startsWith(Ljava/lang/String;Ljava/lang/String;Z)Z
    HSPLkotlin/text/StringsKt__StringsKt;->contains$default(Ljava/lang/CharSequence;CZI)Z
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  4. fastapi/routing.py

                default=default,
                on_startup=on_startup,
                on_shutdown=on_shutdown,
                lifespan=lifespan,
            )
            if prefix:
                assert prefix.startswith("/"), "A path prefix must start with '/'"
                assert not prefix.endswith(
                    "/"
                ), "A path prefix must not end with '/', as the routes will start with '/'"
            self.prefix = prefix
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

          // used in this graph
          for (const auto& pair : g->name_map) {
            const string& name = pair.first;
            if ((name == prefix) || absl::StartsWith(name, prefix_cmp)) {
              status->status = InvalidArgument(
                  "prefix [", prefix,
                  "] conflicts with existing node in the graph named [", name, "]");
              return;
            }
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertThat(call).contains("protocol=http")
        assertThat(call.lowercase(Locale.US)).contains("scheme=basic")
      }
    
      private fun authCallsForHeader(authHeader: String): List<String> {
        val proxy = authHeader.startsWith("Proxy-")
        val responseCode = if (proxy) 407 else 401
        val authenticator = RecordingAuthenticator(null)
        java.net.Authenticator.setDefault(authenticator)
        server.enqueue(
          MockResponse.Builder()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
Back to top