Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for langs3 (0.09 sec)

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

                        _compileFreeDebug 'org.apache.commons:commons-lang3:3.5'
                    }
                    task checkDebug(dependsOn: configurations._compileFreeDebug) {
                        def files = configurations._compileFreeDebug
                        doLast {
                           assert files.collect { it.name }.sort { it } == ['b-transitive.jar', 'c-foo.jar', 'commons-lang3-3.5.jar']
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

                <pgp value="697538D9F48FABC72DD60C1F2C82DBE6C780E2AF"/>
             </artifact>
          </component>
          <component group="org.apache.commons" name="commons-lang3" version="3.9">
             <artifact name="commons-lang3-3.9.jar">
                <pgp value="B6E73D84EA4FCC47166087253FAAD2CD5ECBB314"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                        to.attribute(counted, true).attribute(artifactType, "jar")
                    }
                }
    
                dependencies {
                    implementation 'org.apache.commons:commons-lang3:3.10'
                }
            """
            file("src/main/java").createDir()
            file("src/main/java/Foo.java").createFile().text = """class Foo {}"""
            enableStableConfigurationCache()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  4. src/net/netip/netip_test.go

    // discussions, inlining IPv4 addresses, but having an "overflow"
    // interface for IPv6 or IPv6 + zone. This is here for benchmarking.
    type ip4i struct {
    	ip4    [4]byte
    	flags1 byte
    	flags2 byte
    	flags3 byte
    	flags4 byte
    	ipv6   any
    }
    
    func newip4i_v4(a, b, c, d byte) ip4i {
    	return ip4i{ip4: [4]byte{a, b, c, d}}
    }
    
    // BenchmarkIPv4_inline benchmarks the candidate representation, ip4i.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top