Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Minifying (0.16 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/tests/artifactTransformMinify.out

    > Task :producer:classes
    > Task :producer:jar
    
    > Transform producer.jar (project :producer) with Minify
    Nothing to minify - using producer.jar unchanged
    
    > Task :resolveRuntimeClasspath
    Minifying guava-27.1-jre.jar
    Nothing to minify - using listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar unchanged
    Nothing to minify - using jsr305-3.0.2.jar unchanged
    Nothing to minify - using checker-qual-2.5.2.jar unchanged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 819 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/kotlin/build.gradle.kts

            outputs.file(inputArtifact)                            // <4>
        }
    
        private fun minify(artifact: File, keepClasses: Set<String>, jarFile: File) {
            println("Minifying ${artifact.name}")
            // Implementation ...
    // end::artifact-transform-minify[]
            JarOutputStream(BufferedOutputStream(FileOutputStream(jarFile))).use { jarOutputStream ->
                ZipFile(artifact).use { zip ->
    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

            outputs.file(inputArtifact)                            // <4>
        }
    
        private void minify(File artifact, Set<String> keepClasses, File jarFile) {
            println "Minifying ${artifact.name}"
            // Implementation ...
    // end::artifact-transform-minify[]
            new JarOutputStream (new BufferedOutputStream (new FileOutputStream (jarFile))).withCloseable { jarOutputStream ->
    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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

        }
    
        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 {
            attributes { it.attribute(minified, true) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/BuildStarted.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    import org.gradle.launcher.daemon.diagnostics.DaemonDiagnostics;
    
    /**
     * Returned when the daemon starts a build command, signifying that it has begun processing it.
     */
    public class BuildStarted extends Message {
    
        private final DaemonDiagnostics diagnostics;
    
        public BuildStarted(DaemonDiagnostics diagnostics) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // execution mode, resource ops with the same `shared_name` attribute point to
    // the same underlying resource. This is not true in the eager execution mode.
    // Lifting resource ops as arguments will help unifying them across functions.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLiftHashTableOpsAsArgsPass();
    
    // Creates a pass that merges duplicate resource ops in each function. Two
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. src/runtime/tracestack.go

    	// Since events contain only stack id rather than whole stack trace,
    	// we can allow quite large values here.
    	traceStackSize = 128
    
    	// logicalStackSentinel is a sentinel value at pcBuf[0] signifying that
    	// pcBuf[1:] holds a logical stack requiring no further processing. Any other
    	// value at pcBuf[0] represents a skip value to apply to the physical stack in
    	// pcBuf[1:] after inline expansion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.11.md

    * The global flag "context" now gets applied to `kubectl config view --minify`. In previous versions, this command was only available for `current-context`. Now it will be easier for users to view other non current contexts when minifying. ([#64608](https://github.com/kubernetes/kubernetes/pull/64608), [@dixudx](https://github.com/dixudx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    		}
    		handles[x] = &t
    	}
    	return &unifier{handles, 0, enableInterfaceInference}
    }
    
    // unifyMode controls the behavior of the unifier.
    type unifyMode uint
    
    const (
    	// If assign is set, we are unifying types involved in an assignment:
    	// they may match inexactly at the top, but element types must match
    	// exactly.
    	assign unifyMode = 1 << iota
    
    	// If exact is set, types unify if they are identical (or can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/unify.go

    		}
    		handles[x] = &t
    	}
    	return &unifier{handles, 0, enableInterfaceInference}
    }
    
    // unifyMode controls the behavior of the unifier.
    type unifyMode uint
    
    const (
    	// If assign is set, we are unifying types involved in an assignment:
    	// they may match inexactly at the top, but element types must match
    	// exactly.
    	assign unifyMode = 1 << iota
    
    	// If exact is set, types unify if they are identical (or can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top