Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 299 for 1104 (0.1 sec)

  1. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1

    7d32e7520b801cabc3dc704d2afe59d020d00c45  /home/projects/maven/repository-staging/to-ibiblio/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 164 bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioSolutionFileTest.groovy

        def "setup"() {
            solutionFile.loadDefaults()
        }
    
        def "empty solution file"() {
            expect:
            generatedSolution.content ==
    """Microsoft Visual Studio Solution File, Format Version 11.00
    # Visual C++ Express 2010
    
    Global
    	GlobalSection(SolutionConfigurationPlatforms) = preSolution
    	EndGlobalSection
    	GlobalSection(ProjectConfigurationPlatforms) = postSolution
    	EndGlobalSection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    Created-By: Blackdown-1.3.1_02b-FCS (Blackdown Java-Linux Team) Extension-Name: org.apache.commons.logging Specification-Vendor: Apache Software Foundation Specification-Version: 1.0 Implementation-Vendor: Apache Software Foundation Implementation-Version: 1.0.4 org/apache/commons/logging/impl/Log4JCategoryLog.class package org.apache.commons.logging.impl; public final synchronized class Log4JCategoryLog implements org.apache.commons.logging.Log { private static final String FQCN; private org.apache.log4j.Category...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.md5

    John Dennis Casey <******@****.***> 1192565740 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 32 bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1

    John Dennis Casey <******@****.***> 1192565740 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 40 bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/bootstrapdump.json

    {
        "bootstrap": {
            "node": {
                "metadata": {
                        "ISTIO_PROXY_SHA": "istio-proxy:436f365a8007cd8a13a9f1321e7cce94bcc8883e",
                        "ISTIO_VERSION": "1.10.0"
                    },
                "userAgentBuildVersion": {
                    "version": {
                        "majorNumber": 1,
                        "minorNumber": 18,
                        "patch": 3
                    },
                    "metadata": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 05 11:02:00 UTC 2022
    - 739 bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/configdump.json

          "bootstrap": {
            "node": {
              "metadata": {
                "ISTIO_PROXY_SHA": "istio-proxy:436f365a8007cd8a13a9f1321e7cce94bcc8883e",
                "ISTIO_VERSION": "1.10.0"
              },
              "userAgentBuildVersion": {
                "version": {
                  "majorNumber": 1,
                  "minorNumber": 18,
                  "patch": 3
                },
                "metadata": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 15 05:44:44 UTC 2021
    - 742 bytes
    - Viewed (0)
  8. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

            assertOrder(X_LT_Y, "1.0.m1", "1.0");
    
            assertOrder(X_GT_Y, "1.0a.1", "1.0");
            assertOrder(X_GT_Y, "1.0a-1", "1.0");
            assertOrder(X_GT_Y, "1.0b.1", "1.0");
            assertOrder(X_GT_Y, "1.0b-1", "1.0");
            assertOrder(X_GT_Y, "1.0m.1", "1.0");
            assertOrder(X_GT_Y, "1.0m-1", "1.0");
        }
    
        @Test
        void testUnknownQualifierOrdering() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue15039.go

    	// for truncation.
    	u := uint64(0x10001f4a9)
    	big := string(u)
    	if big != fffd {
    		panic("big != bad")
    	}
    
    	// cmd/compile used to require integer constants to fit into an "int".
    	const huge = string(1<<100)
    	if huge != fffd {
    		panic("huge != bad")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 10:28:23 UTC 2016
    - 545 bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            assertEquals(9, JvmUtil.getJavaVersion());
            System.setProperty("java.version", "10.0.1");
            assertEquals(10, JvmUtil.getJavaVersion());
            System.setProperty("java.version", "11.0.1");
            assertEquals(11, JvmUtil.getJavaVersion());
        }
    
        public void test_filterJvmOptions() {
            final String[] args = new String[] { //
                    "-X111", //
                    "8:-X222", //
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top