Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Minifier (0.13 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
Back to top