Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for longXml (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RemoteDependencyResolveConsoleIntegrationTest.groovy

                        files.each { println it.name }
                    }
                }
    """
    
            given:
            def getM1Pom = server.get(m1.pom.path).sendSomeAndBlock(longXml(m1.pom.file))
            def getM2Pom = server.get(m2.pom.path).sendSomeAndBlock(longXml(m2.pom.file))
            def metaData = server.expectConcurrentAndBlock(getM1Pom, getM2Pom)
            def getM1Jar = server.get(m1.artifact.path).sendSomeAndBlock(longJar(m1.artifact.file))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/RequestBodyCompression.java

          Types.newParameterizedType(Map.class, String.class, String.class));
    
      public void run() throws Exception {
        Map<String, String> requestBody = new LinkedHashMap<>();
        requestBody.put("longUrl", "https://publicobject.com/2014/12/04/html-formatting-javadocs/");
        RequestBody jsonRequestBody = RequestBody.create(
            mapJsonAdapter.toJson(requestBody), MEDIA_TYPE_JSON);
        Request request = new Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat May 25 18:02:55 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_aws/fess/doc.json

          {
            "lang_mk": {
              "match": "*_mk",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_ml": {
              "match": "*_ml",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_nl": {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcarchive/testdata/main2.c

    		die("sigaddset");
    	}
    	i = sigprocmask(SIG_UNBLOCK, &mask, NULL);
    	if (i != 0) {
    		fprintf(stderr, "sigprocmask: %s\n", strerror(i));
    		exit(EXIT_FAILURE);
    	}
    
    	// Don't try this at home.
    	longjmp(jmp, signo);
    
    	// We should never get here.
    	abort();
    }
    
    // Set up the signal handlers in a high priority constructor,
    // so that they are installed before the Go code starts.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/doc.json

          {
            "lang_mk": {
              "match": "*_mk",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_ml": {
              "match": "*_ml",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_nl": {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/_cloud/fess/doc.json

          {
            "lang_mk": {
              "match": "*_mk",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_ml": {
              "match": "*_ml",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_nl": {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcshared/testdata/main4.c

    		die("sigaddset");
    	}
    	i = sigprocmask(SIG_UNBLOCK, &mask, NULL);
    	if (i != 0) {
    		fprintf(stderr, "sigprocmask: %s\n", strerror(i));
    		exit(EXIT_FAILURE);
    	}
    
    	// Don't try this at home.
    	longjmp(jmp, signo);
    
    	// We should never get here.
    	abort();
    }
    
    int main(int argc, char** argv) {
    	int verbose;
    	struct sigaction sa;
    	void* handle;
    	void (*fn)(void);
    	sigset_t mask;
    	int i;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/html.go

    	io.WriteString(p.w, "<li class=\"ssa-end-block\">")
    	fmt.Fprint(p.w, b.LongHTML())
    	io.WriteString(p.w, "</li>")
    	io.WriteString(p.w, "</ul>")
    }
    
    func (p htmlFuncPrinter) value(v *Value, live bool) {
    	var dead string
    	if !live {
    		dead = "dead-value"
    	}
    	fmt.Fprintf(p.w, "<li class=\"ssa-long-value %s\">", dead)
    	fmt.Fprint(p.w, v.LongHTML())
    	io.WriteString(p.w, "</li>")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

     *                return, provided _FATAL versions of assertions to return
     *                from test function on failure. (JDS)
     *
     *  01-Sep-2004   Modified assertions for setjmp/longjmp mechanism of 
     *                aborting test runs, added CU_FAIL and CU_PASS macros. (JDS)
     *
     *  07-May-2005   Added CU_ prefix to remaining CUnit defines (BOOL, TRUE, 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *  @param strFile       Source file where test statement failed.
     *  @param strFunction   Function where test statement failed.
     *  @param bFatal        CU_TRUE to abort test (via longjmp()), CU_FALSE to continue test.
     *  @return As a convenience, returns the value of the assertion (i.e. bValue).
     */
    
    #ifdef USE_DEPRECATED_CUNIT_NAMES
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top