Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,540 for jar1 (0.04 sec)

  1. src/crypto/internal/nistec/p256_asm_s390x.s

    	VSLDB $12, T2, T1, T1
    
    	VACCQ  T0, ADD3H, CAR1
    	VAQ    T0, ADD3H, T0
    	VACCCQ T1, ADD4H, CAR1, T2
    	VACQ   T1, ADD4H, CAR1, T1
    
    	VACCQ  T0, RED1, CAR1
    	VAQ    T0, RED1, T0
    	VACCCQ T1, RED2, CAR1, CAR2
    	VACQ   T1, RED2, CAR1, T1
    	VAQ    T2, CAR2, T2
    
    	// ---------------------------------------------------
    
    	VZERO   RED3
    	VSCBIQ  P0, T0, CAR1
    	VSQ     P0, T0, ADD1H
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegritySpec.groovy

            def classesIndex = [:] as HashMap<String, List<String>> // class name -> list of containing jars
            jars.each { jar ->
                new ZipFile(jar).withCloseable {
                    def names = it.entries()*.name
                    def groupedNames = names.groupBy { it }
                    groupedNames.each { name, all ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. ci/official/utilities/repack_libtensorflow.sh

      tmp_dir=$(mktemp -d)
      cp "${src_jar}" "${tmp_dir}/orig.jar"
      pushd "${tmp_dir}"
      # Extract any src/ files
      jar -xf "${tmp_dir}/orig.jar" src/
      # Extract any org/ files under src/main/java
      (mkdir -p src/main/java && cd src/main/java && jar -xf "${tmp_dir}/orig.jar" org/)
      # Repackage src/
      jar -cMf "${tmp_dir}/new.jar" src
      popd
      cp "${tmp_dir}/new.jar" "${dest_jar}"
      rm -rf "${tmp_dir}"
    }
    DIR=$1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 19:47:53 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

    val resolveManifestClasspath = configurations.resolvable("resolveManifestClasspath") {
        isTransitive = false
        extendsFrom(manifestClasspath.get())
        configureAsRuntimeJarClasspath(objects)
    }
    
    tasks.jar.configure {
        val classpath = resolveManifestClasspath.flatMap { configuration ->
            configuration.elements.map { classpathDependency ->
                classpathDependency.joinToString(" ") { it.asFile.name }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaCompileAvoidanceWithIncrementalCompilationIntegrationTest.groovy

        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "fails when malformed jars are on the compile classpath"() {
            buildFile << """
                apply plugin: '${language.name}'
                dependencies {
                    implementation files("broken.jar")
                }
            """
            file("broken.jar").text = "this is not a jar"
            file("src/main/${language.name}/Main.${language.name}") << "public class Main {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/PluginIdExtensions.kt

            }
        }
    }
    
    
    private
    fun pluginIdExtensionDeclarationsFor(
        jars: Iterable<File>,
        pluginDependenciesSpecQualifiedName: String,
        pluginDependencySpecQualifiedName: String,
    ): Sequence<String> {
        return pluginExtensionsFrom(jars)
            .map { (memberName, pluginId, implementationClass) ->
                """
                /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_initialize_variables_in_session_init.mlir

        %0 = "tf.VarHandleOp"() {_class = ["loc:@dense/kernel"], allowed_devices = [], container = "", device = "/job:worker/replica:0/task:1/device:CPU:0", shared_name = "var1"} : () -> tensor<!tf_type.resource<tensor<100x50xf32>>>
        %1 = "tf.ReadVariableOp"(%0) {device = ""} : (tensor<!tf_type.resource<tensor<100x50xf32>>>) -> tensor<100x50xf32>
        func.return %1 : tensor<100x50xf32>
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  8. deps.xml

    		</get>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${crawler.dir}/lib"/>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${suggest.dir}/lib"/>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${thumbnail.dir}/lib"/>
    	</target>
    
    	<target name="install.plugin.jar">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:59:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/hoist_loop_invariant.mlir

    func.func @readvariableop_is_hoisted_if_readonly(%arg0: tensor<i32>, %arg1: tensor<i32>) -> (tensor<i32>, tensor<i32>) {
      %cst_0 = "tf.Const"() { value = dense<1> : tensor<i32> } : () -> tensor<i32>
      %var1 = "tf.VarHandleOp"() {container="", shared_name="var1", device = "/job:worker/replica:0/task:1/device:CPU:0"} : () -> tensor<!tf_type.resource<tensor<i32>>>
      %0:2 = "tf.WhileRegion"(%arg0, %arg1) ({
      ^bb0(%arg2: tensor<i32>, %arg3: tensor<i32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 22 17:12:02 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/CompileClasspath.java

     *
     * <ul>
     *     <li>Changes to the path of jar or top level directories.</li>
     *     <li>Changes to timestamps and the order of entries in Jars.</li>
     *     <li>Changes to resources and Jar manifests, including adding or removing resources.</li>
     *     <li>Changes to private class elements, such as private fields, methods and inner classes.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 10:29:21 UTC 2018
    - 2.3K bytes
    - Viewed (0)
Back to top