Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for b18 (0.02 sec)

  1. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/ZipHasherTest.groovy

            hash1 != hash2
        }
    
        def "manifest attributes are ignored"() {
            given:
            def jarfile = tmpDir.file("test.jar")
            createJarWithAttributes(jarfile, ["Created-By": "1.8.0_232-b18 (Azul Systems, Inc.)"])
    
            def hash1 = zipHasher.hash(snapshotContext(jarfile))
            def hash2 = ignoringZipHasher.hash(snapshotContext(jarfile))
    
            expect:
            hash1 != hash2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. test/const1.go

    	b16  byte = byte(0) * 1000        // ERROR "overflow|cannot convert"
    	b16a byte = 0 * 1000              // OK
    	b17  byte = byte(0) * byte(1000)  // ERROR "overflow|cannot convert"
    	b18  byte = Uint8 / 0             // ERROR "division by zero"
    
    	c1 float64 = Big
    	c2 float64 = Big * Big          // ERROR "overflow|cannot convert"
    	c3 float64 = float64(Big) * Big // ERROR "overflow|cannot convert"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 3.8K bytes
    - Viewed (0)
Back to top