Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Minifier (0.48 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

            to.attribute(artifactType, 'size')
        }
    
        registerTransform(Minifier) {
            from.attribute(minified, false)
            to.attribute(minified, true)
        }
    }
    
    ${artifactTransform("Minifier", "min", "Minifying")}
    ${artifactTransform("FileSizer", "txt", "Sizing")}
    
    task resolve(type: Copy) {
        def artifacts = configurations.compileClasspath.incoming.artifactView {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    For example, consider a `minified` attribute with two values: `true` and `false`.
    The minified attribute represents a variant of a dependency with unnecessary class files removed.
    There is an artifact transform registered, which can transform `minified` from `false` to `true`.
    When `minified=true` is requested for a dependency, and there are only variants with `minified=false`, then Gradle selects the registered minify transform.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                        from.attribute(minified, false).attribute(artifactType, "jar")
                        to.attribute(minified, true).attribute(artifactType, "jar")
                    }
                    registerTransform(SomeTransform) {
                        from.attribute(optimized, false).attribute(minified, true).attribute(artifactType, "jar")
                        to.attribute(optimized, true).attribute(minified, true).attribute(artifactType, "jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/go/types/unify.go

    	//   [p, q, ...] ➞ [x, y, ...]    mapping from type parameters to types
    	traceInference = false
    )
    
    // A unifier maintains a list of type parameters and
    // corresponding types inferred for each type parameter.
    // A unifier is created by calling newUnifier.
    type unifier struct {
    	// handles maps each type parameter to its inferred type through
    	// an indirection *Type called (inferred type) "handle".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/unify.go

    	//   [p, q, ...] ➞ [x, y, ...]    mapping from type parameters to types
    	traceInference = false
    )
    
    // A unifier maintains a list of type parameters and
    // corresponding types inferred for each type parameter.
    // A unifier is created by calling newUnifier.
    type unifier struct {
    	// handles maps each type parameter to its inferred type through
    	// an indirection *Type called (inferred type) "handle".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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