Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Src3 (0.19 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

                it.from("src1", "src2")
                it.from("src3")
            })
            then:
            collection.from as List == ["src1", "src2", "src3"]
        }
    
        def "can incrementally set paths using closure"() {
            when:
            collection.withActualValue {
                it.from("src1", "src2")
                it.from("src3")
            }
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/crypto/md5/md5block_arm.s

    	ROUND4(Rb, Rc, Rd, Ra, 13, 21, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND4(Ra, Rb, Rc, Rd,  4,	6, Rc0)
    	ROUND4(Rd, Ra, Rb, Rc, 11, 10, Rc1)
    	ROUND4(Rc, Rd, Ra, Rb,  2, 15, Rc2)
    	ROUND4(Rb, Rc, Rd, Ra,  9, 21, Rc3)
    
    	MOVW	dig+0(FP), Rt0
    	MOVM.IA (Rt0), [Rc0,Rc1,Rc2,Rc3]
    
    	ADD	Rc0, Ra
    	ADD	Rc1, Rb
    	ADD	Rc2, Rc
    	ADD	Rc3, Rd
    
    	MOVM.IA [Ra,Rb,Rc,Rd], (Rt0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. src/go/version/version_test.go

    var langTests = []testCase1[string, string]{
    	{"bad", ""},
    	{"go1.2rc3", "go1.2"},
    	{"go1.2.3", "go1.2"},
    	{"go1.2", "go1.2"},
    	{"go1", "go1"},
    	{"go222", "go222.0"},
    	{"go1.999testmod", "go1.999"},
    }
    
    func TestIsValid(t *testing.T) { test1(t, isValidTests, "IsValid", IsValid) }
    
    var isValidTests = []testCase1[string, bool]{
    	{"", false},
    	{"1.2.3", false},
    	{"go1.2rc3", true},
    	{"go1.2.3", true},
    	{"go1.999testmod", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32.go

    //
    //    // archAvailableIEEE reports whether an architecture-specific CRC32-IEEE
    //    // algorithm is available.
    //    archAvailableIEEE() bool
    //
    //    // archInitIEEE initializes the architecture-specific CRC3-IEEE algorithm.
    //    // It can only be called if archAvailableIEEE() returns true.
    //    archInitIEEE()
    //
    //    // archUpdateIEEE updates the given CRC32-IEEE. It can only be called if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

         * <a href="https://netbeans.org/bugzilla/show_bug.cgi?id=226100">226100</a>
         */
        @Test
        void testMng5568() {
            String a = "6.1.0";
            String b = "6.1.0rc3";
            String c = "6.1H.5-beta"; // this is the unusual version string, with 'H' in the middle
    
            checkVersionsOrder(b, a); // classical
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/cmd/go/main.go

    			// See issue 21928 for details.
    			if p == "" {
    				continue
    			}
    			// Note: using HasPrefix instead of Contains because a ~ can appear
    			// in the middle of directory elements, such as /tmp/git-1.8.2~rc3
    			// or C:\PROGRA~1. Only ~ as a path prefix has meaning to the shell.
    			if strings.HasPrefix(p, "~") {
    				fmt.Fprintf(os.Stderr, "go: GOPATH entry cannot start with shell metacharacter '~': %q\n", p)
    				os.Exit(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/garbagecollector_test.go

    		t.Errorf("expected rc2 to not exist in the cache")
    	}
    	if !gc.absentOwnerCache.Has(objectReference{Namespace: "ns1", OwnerReference: metav1.OwnerReference{Kind: "ReplicationController", Name: "rc3", UID: "3", APIVersion: "v1"}}) {
    		t.Errorf("expected rc3 to be in the cache")
    	}
    	// check the request sent to the server
    	count := 0
    	for _, action := range testHandler.actions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_4x.md

    from OkHttp 3.x. We wrote an [upgrade guide][upgrading_to_okhttp_4] to help with the migration and a
    [blog post][okhttp4_blog_post] to explain it.
    
     *  Fix: Target Java 8 bytecode for Java and Kotlin.
    
    
    ## Version 4.0.0-RC3
    
    _2019-06-24_
    
     *  Fix: Retain binary-compatibility in `okhttp3.internal.HttpMethod`. Naughty third party SDKs
        import this and we want to ease upgrades for their users.
    
    
    ## Version 4.0.0-RC2
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === Potential breaking changes
    
     * There have been several potentially breaking changes in Kotlin DSL — see the _Breaking changes_ section of https://github.com/gradle/kotlin-dsl/releases/tag/v1.0-RC3[that project's release notes].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top