Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 273 for 05 (0.02 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/swift-application-variant-task-graph.dot

    digraph swiftLibraryVariantTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style="dashed,filled", fillcolor=grey]
      rankdir=LR
    
      compileVariantSwift -> linkVariant -> installVariant -> assembleVariant [dir=back, style=dashed]
      compileVariantSwift[label=<compile<i>Variant</i>Swift>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/kt/AccessHeaders.kt

      fun run() {
        val request =
          Request.Builder()
            .url("https://api.github.com/repos/square/okhttp/issues")
            .header("User-Agent", "OkHttp Headers.java")
            .addHeader("Accept", "application/json; q=0.5")
            .addHeader("Accept", "application/vnd.github.v3+json")
            .build()
    
        client.newCall(request).execute().use { response ->
          if (!response.isSuccessful) throw IOException("Unexpected code $response")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

            assertQueryBuilder(BoolQueryBuilder.class,
                    "{\"bool\":{\"should\":[{\"match_phrase\":{\"title\":{\"query\":\"aaa\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":0.5}}},{\"match_phrase\":{\"content\":{\"query\":\"aaa\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":0.05}}}],\"adjust_pure_negative\":true,\"boost\":1.0}}",
                    "aaa");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/cpp-application-task-graph.dot

    digraph cppApplicationTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> linkDebug -> assemble -> build [dir=back]
      linkDebug -> assembleDebug [dir=back]
      check -> build [dir=back]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/cpp-static-library-task-graph.dot

    digraph cppStaticLibraryTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> createDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv13-IssueTicket

    00000220  9a 2d 0e 5d b7 8e cc bc  5c 0a b3 13 5b 8c 86 de  |.-.]....\...[...|
    00000230  e3 1a 70 cd 9d 63 4c ea  e2 56 f9 3b 05 8e 0b 96  |..p..cL..V.;....|
    00000240  16 c9 a4 67 09 fe 88 ae  4b 8c d1 b3 19 10 0f fd  |...g....K.......|
    00000250  07 33 86 3a 6a 54 ef 69  27 02 bf 76 7c 05 ab 40  |.3.:jT.i'..v|..@|
    00000260  e6 43 9e 3c 9b ee 0c d8  14 ff c1 09 a6 73 65 66  |.C.<.........sef|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-variant-task-graph.dot

    digraph cppUnitTestVariantTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style="dashed,filled", fillcolor=grey]
      rankdir=LR
    
      compileTestVariantCpp -> linkTestVariant -> installTestVariant -> runTestVariant [dir=back, style=dashed]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/xctest-variant-task-graph.dot

    digraph xctestVariantTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style="dashed,filled", fillcolor=grey]
      rankdir=LR
    
      compileTestVariantSwift -> linkTestVariant -> installTestVariant -> xcTestVariant [dir=back, style=dashed]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/groovy/build.gradle

        }
    }
    // end::report-configuration[]
    
    // tag::violation-rules-configuration[]
    jacocoTestCoverageVerification {
        violationRules {
            rule {
                limit {
                    minimum = 0.5
                }
            }
    
            rule {
                enabled = false
                element = 'CLASS'
                includes = ['org.gradle.*']
    
                limit {
                    counter = 'LINE'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit_intl.h

     *  License along with this library; if not, write to the Free Software
     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Internationalization support
     *
     *  05-May-2006   Initial implementation.  (JDS)
     */
    
    /** @file
     *  Internal CUnit header supporting internationalization of
     *  CUnit framework & interfaces.
     */
    /** @addtogroup Framework
     * @{
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top