Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Minifier (0.29 sec)

  1. .idea/dictionaries/bashor.xml

        <words>
          <w>binaryen</w>
          <w>ctor</w>
          <w>inlining</w>
          <w>interner</w>
          <w>intrinsicify</w>
          <w>kclass</w>
          <w>lookups</w>
          <w>minification</w>
          <w>minifier</w>
          <w>minify</w>
          <w>unescape</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 09 12:44:39 UTC 2022
    - 365 bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/kotlin/build.gradle.kts

    dependencies {
        attributesSchema {
            attribute(minified)                      // <1>
        }
        artifactTypes.getByName("jar") {
            attributes.attribute(minified, false)    // <2>
        }
    }
    
    configurations.all {
        afterEvaluate {
            if (isCanBeResolved) {
                attributes.attribute(minified, true) // <3>
            }
        }
    }
    // tag::artifact-transform-registration[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/groovy/build.gradle

    dependencies {
        attributesSchema {
            attribute(minified)                      // <1>
        }
        artifactTypes.getByName("jar") {
            attributes.attribute(minified, false)    // <2>
        }
    }
    
    configurations.all {
        afterEvaluate {
            if (canBeResolved) {
                attributes.attribute(minified, true) // <3>
            }
        }
    }
    // tag::artifact-transform-registration[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

     */
    import gradlebuild.basics.classanalysis.Attributes.artifactType
    import gradlebuild.basics.classanalysis.Attributes.minified
    import gradlebuild.basics.transforms.Minify
    
    /**
     * A map from artifact name to a set of class name prefixes that should be kept.
     * Artifacts matched by this map will be minified to only contain the specified
     * classes and the classes they depend on. The classes are not relocated, they all
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/AnalyzeAndShade.kt

    import java.util.zip.ZipEntry
    
    
    private
    val ignoredPackagePatterns = PackagePatterns(setOf("java"))
    
    
    object Attributes {
        val artifactType = Attribute.of("artifactType", String::class.java)
        val minified = Attribute.of("minified", Boolean::class.javaObjectType)
    }
    
    
    class JarAnalyzer(
        private val shadowPackage: String,
        private val keepPackages: Set<String>,
        private val unshadedPackages: Set<String>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top