Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,519 for 21$ (0.02 sec)

  1. src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt

    echo module vcs-test.golang.org/git/tagtests.git >go.mod
    echo package tagtests >tagtests.go
    git add go.mod tagtests.go
    git commit -m 'create module tagtests'
    
    git branch b
    
    echo v0.2.1 >v0.2.1
    git add v0.2.1
    git commit -m v0.2.1
    git tag v0.2.1
    
    git checkout b
    echo v0.2.2 >v0.2.2
    git add v0.2.2
    git commit -m v0.2.2
    git tag v0.2.2
    
    git checkout master
    git merge b -m merge
    
    zip -r ../tagtests.zip .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    // Lang returns the Go language version for version x.
    // If x is not a valid version, Lang returns the empty string.
    // For example:
    //
    //	Lang("go1.21rc2") = "go1.21"
    //	Lang("go1.21.2") = "go1.21"
    //	Lang("go1.21") = "go1.21"
    //	Lang("go1") = "go1"
    //	Lang("bad") = ""
    //	Lang("1.21") = ""
    func Lang(x string) string {
    	v := lang(stripGo(x))
    	if v == "" {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenVersionRangeResolveIntegrationTest.groovy

            mavenRepo.module('org.test', 'parent', '2.1').dependsOn('org.test', 'dep', '2.1').publishPom()
            mavenRepo.module('org.test', 'parent', '3.0').dependsOn('org.test', 'dep', '3.0').publishPom()
            mavenRepo.module('org.test', 'dep', '2.1').publish()
    
            def resolve = new ResolveTestFixture(buildFile, "compile")
            resolve.prepare()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationTest.java

            auth.setServer("hostname");
            auth.setPort(21);
            auth.setUsername("testuser");
            auth.setPassword("testpass");
    
            assertTrue(auth.matches("ftp://hostname:21/test/aaa.html"));
            assertTrue(auth.matches("ftp://hostname/test/aaa.html"));
            assertTrue(auth.matches("ftp://hostname:21/test"));
            assertTrue(auth.matches("ftp://hostname/test"));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

            fails ":checkDeps"
            failure.assertHasCause("Could not download api-2.1.jar (org.utils:api:2.1)")
            failure.assertHasCause("Could not GET '${artifactURI('org.utils', 'api', '2.1')}'. Received status code 500 from server: broken")
    
            when:
            resetExpectations()
            repositoryInteractions {
                'org.utils:api:2.1' {
                    expectGetArtifact()
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

                return 'maven-repo/thing/lib1/2.1/lib1-2.1.pom'.replace('/', File.separator)
            }
    
            @Override
            String getNewVersionInvalidatedResource() {
                return "file '$versionMetadataLocation'"
            }
    
            @Override
            void setup(AbstractIntegrationSpec owner) {
                owner.with {
                    mavenRepo.module("thing", "lib1", "2.1").publish()
                    buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. test/float_lit3.go

    	// is shorter than 1024 bits, it cannot distinguish max64+ulp64/2-1 and max64+ulp64/2.
    	float64(max64 + ulp64/2 - two1024/two256), // ok
    	float64(max64 + ulp64/2 - 1),              // ok
    	float64(max64 + ulp64/2),                  // ERROR "constant 1\.79769e\+308 overflows float64|cannot convert.*to type float64"
    
    	float64(-max64 - ulp64/2 + two1024/two256), // ok
    	float64(-max64 - ulp64/2 + 1),              // ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 03 16:24:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

                @Override
                public int size() {
                    return 20;
                }
            };
            qrList.allRecordCount = 21;
            qrList.calculatePageInfo();
            assertEquals(20, qrList.getPageSize());
            assertEquals(1, qrList.getCurrentPageNumber());
            assertEquals(21, qrList.getAllRecordCount());
            assertEquals(2, qrList.getAllPageCount());
            assertEquals(false, qrList.isExistPrevPage());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. hack/verify-vendor.sh

    pushd "${_kubetmp}" > /dev/null 2>&1
      # Destroy deps in the copy of the kube tree
      rm -rf ./vendor ./LICENSES
    
      # Recreate the vendor tree using the nice clean set we just downloaded
      hack/update-vendor.sh
    popd > /dev/null 2>&1
    
    ret=0
    
    pushd "${KUBE_ROOT}" > /dev/null 2>&1
      # Test for diffs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/internal/trace/batchcursor_test.go

    	heap[len(heap)-1].ev.time = 21
    	heapUpdate(heap, len(heap)-1)
    	checkHeap(t, heap)
    	if heap[len(heap)-1].ev.time != 21 {
    		t.Fatalf("heap update failed, expected %d as heap min: %s", 21, heapDebugString(heap))
    	}
    
    	// Update the last element to be smaller.
    	heap[len(heap)-1].ev.time = 7
    	heapUpdate(heap, len(heap)-1)
    	checkHeap(t, heap)
    	if heap[len(heap)-1].ev.time == 21 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top