Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 165 for sourceJar (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.cc

    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/SourceMgr.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/Diagnostics.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/ContinuousBuildProgressEventsCrossVersionSpec.groovy

            launcher.addProgressListener(events)
        }
    
        def "client can receive appropriate logging and progress events for subsequent builds"() {
            when:
            def javaSrcFile = sourceDir.file("Thing.java") << 'public class Thing {}'
    
            then:
            runBuild {
                succeeds()
                receivedBuildEvents()
                waitBeforeModification javaSrcFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Download Plugins with Maven
          run: mvn -B antrun:run --file pom.xml
        - name: Build with Maven
          run: mvn -B source:jar javadoc:jar package --file pom.xml
        - name: Run Fess
          run: bash src/test/resources/before_script.sh
        - name: Run Integration Test
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/conversion.go

    // the other side. Use when mapping from a map[string]* to a struct or vice versa.
    func JSONKeyMapper(key string, sourceTag, destTag reflect.StructTag) (string, string) {
    	if s := destTag.Get("json"); len(s) > 0 {
    		return strings.SplitN(s, ",", 2)[0], key
    	}
    	if s := sourceTag.Get("json"); len(s) > 0 {
    		return key, strings.SplitN(s, ",", 2)[0]
    	}
    	return key, key
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 5.2K bytes
    - Viewed (0)
  5. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningPublicationsSpec.groovy

            useJavadocAndSourceJars()
            publishing {
                publications {
                    maven(MavenPublication) {
                        from components.java
                        artifact sourcesJar
                        artifact javadocJar
                    }
                }
            }
        }
    
        def "publication added to container after signing is specified"() {
            given:
            def signTasks = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

    }
    
    repositories {
        mavenCentral()
    }
    
    tasks {
        compileKotlin2Js {
            kotlinOptions {
                outputFile = "${sourceSets.main.get().output.resourcesDir}/output.js"
                sourceMap = true
            }
        }
        val unpackKotlinJsStdlib by registering {
            group = "build"
            description = "Unpack the Kotlin JavaScript standard library"
            val outputDir = file("$buildDir/$name")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/net/addrselect.go

    	// prefer DA.  Similarly, if DA is known to be unreachable or if
    	// Source(DA) is undefined, then prefer DB.
    	if !SourceDA.IsValid() && !SourceDB.IsValid() {
    		return false // "equal"
    	}
    	if !SourceDB.IsValid() {
    		return preferDA
    	}
    	if !SourceDA.IsValid() {
    		return preferDB
    	}
    
    	// Rule 2: Prefer matching scope.
    	// If Scope(DA) = Scope(Source(DA)) and Scope(DB) <> Scope(Source(DB)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/utils/utils.h

    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> ImportFlatbufferOrMlir(
        const std::string& input_filename, bool input_mlir,
        bool experimental_prune_unreachable_nodes_unconditionally,
        llvm::SourceMgr* source_mgr, mlir::MLIRContext* context);
    
    // Export the module to file, can be either mlir or flatbuffer.
    absl::Status ExportFlatbufferOrMlir(const std::string& output_filename,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         * if it should only be built locally by calling or wiring the ':javadocJar' task.
         *
         * @since 6.0
         */
        void withJavadocJar();
    
        /**
         * Adds a task {@code sourcesJar} that will package the Java sources of the main {@link org.gradle.api.tasks.SourceSet SourceSet} in a JAR with classifier {@code sources}.
         * <P>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (1)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

        }
    
        def "ignores missing dependency if there is an #relation relation in the other direction"() {
            def sourceDir = "src"
            file(sourceDir).createDir()
            def outputDir = "build/output"
    
            buildFile """
                task firstTask {
                    inputs.dir("${sourceDir}")
                    def outputDir = file("${outputDir}")
                    outputs.dir(outputDir)
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top