Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Minifier (0.16 sec)

  1. platforms/core-runtime/wrapper-main/build.gradle.kts

        exclude("gradle-*-classpath.properties")
        exclude("gradle-*-parameter-names.properties")
    }
    
    // Using Gr8 plugin with ProGuard to minify the wrapper JAR.
    // This minified JAR is added to the project root when the wrapper task is used.
    // It is embedded in the main JAR as a resource called `/gradle-wrapper.jar.`
    gr8 {
        create("gr8") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.shaded-jar.gradle.kts

    configureShadedSourcesJarVariant()
    
    fun registerTransforms() {
        dependencies {
            registerTransform(ShadeClasses::class) {
                from.attribute(Attributes.artifactType, "jar")
                    .attribute(Attributes.minified, true)
                to.attribute(Attributes.artifactType, relocatedClassesAndAnalysisType)
                parameters {
                    shadowPackage = "org.gradle.internal.impldep"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

                        println root.get()
                    }
                }
            """
    
            expect:
            succeeds("resolve", "--stacktrace")
        }
    
        @Ignore("Original reproducer. Minified version below")
        @Requires(UnitTestPreconditions.Jdk17OrLater)
        @Issue("https://github.com/gradle/gradle/issues/26145#issuecomment-1957776331")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. src/internal/testenv/testenv_test.go

    	// Support both the old infra's builder names and the LUCI builder names.
    	// The former's names are ad-hoc so we could maintain this invariant on
    	// the builder side. The latter's names are structured, and the signifier
    	// of emulation "emu" will appear as a "host" suffix after the GOOS and
    	// GOARCH because it modifies the run environment in such a way that it
    	// the target GOOS and GOARCH may not match the host. This suffix always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 23:12:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/go/types/predicates.go

    	ignoreInvalids bool // if set, identical treats an invalid type as identical to any type
    }
    
    // For changes to this code the corresponding changes should be made to unifier.nify.
    func (c *comparer) identical(x, y Type, p *ifacePair) bool {
    	x = Unalias(x)
    	y = Unalias(y)
    
    	if x == y {
    		return true
    	}
    
    	if c.ignoreInvalids && (!isValid(x) || !isValid(y)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/predicates.go

    	ignoreInvalids bool // if set, identical treats an invalid type as identical to any type
    }
    
    // For changes to this code the corresponding changes should be made to unifier.nify.
    func (c *comparer) identical(x, y Type, p *ifacePair) bool {
    	x = Unalias(x)
    	y = Unalias(y)
    
    	if x == y {
    		return true
    	}
    
    	if c.ignoreInvalids && (!isValid(x) || !isValid(y)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    In JavaScript, a library may exist as uncompressed or minified artifact. In Gradle, a specific artifact identifier is called _classifier_, a term generally used in Maven and Ivy dependency management.
    
    Let's say we wanted to download the minified artifact of the JQuery library instead of the uncompressed file. You can provide the classifier `min` as part of the dependency declaration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
Back to top