Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,974 for msbuild (0.09 sec)

  1. platforms/documentation/docs/src/snippets/antMigration/importBuild/kotlin/build.xml

        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <target name="cleanAll">
            <delete dir="${build.dir}"/>
        </target>
    
        <target name="prepare">
            <tstamp>
                <format property="now" pattern="yyyy-MM-dd hh:mm:ss"/>
            </tstamp>
        </target>
    
        <target name="build" depends="prepare">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 958 bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/BUILD

            "//tensorflow/compiler/aot:tfcompile",
            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
        ],
    )
    
    # We disable some tfcompile tests in the open source build with the
    # "manual" tag to avoid making our OSS users build LLVM twice
    # (once for host and once for target).
    
    test_suite(
        name = "all_tests",
        tags = ["manual"],
        tests = [
            ":test_graph_tfadd_test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/antMigration/multiProject/kotlin/util/build.xml

    <project name="util" default="build" basedir=".">
        <property name="src.dir" value="src"/>
        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <target name="compile">
            <mkdir dir="${classes.dir}"/>
            <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="true"/>
        </target>
    
        <target name="package" depends="build">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 603 bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/issue33808_test.go

    }
    `
    
    func TestIssue33808(t *testing.T) {
    	if runtime.GOOS != "darwin" {
    		return
    	}
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    	t.Parallel()
    
    	dir := t.TempDir()
    
    	f := gobuild(t, dir, prog, "-ldflags=-linkmode=external")
    	f.Close()
    
    	syms, err := f.Symbols()
    	if err != nil {
    		t.Fatalf("Error reading symbols: %v", err)
    	}
    
    	name := "log.Fatalf"
    	for _, sym := range syms {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 08 20:03:01 UTC 2021
    - 792 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/base/buildDashboard/groovy/build.gradle

    // tag::use-build-dashboard-plugin[]
    plugins {
        id 'build-dashboard'
    // end::use-build-dashboard-plugin[]
        id 'codenarc'
        id 'groovy'
    // tag::use-build-dashboard-plugin[]
    }
    // end::use-build-dashboard-plugin[]
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation localGroovy()
        testImplementation 'junit:junit:4.13'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 349 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/TaskExecutionMode.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.changedetection;
    
    import java.util.Optional;
    
    public interface TaskExecutionMode {
        /**
         * Return rebuild reason if any.
         */
        Optional<String> getRebuildReason();
    
        /**
         * Returns whether the execution history should be stored.
         */
        boolean isTaskHistoryMaintained();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 03 11:19:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/antMigration/importBuild/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'java-library'
    }
    // end::apply-plugin[]
    
    // tag::import-build[]
    ant.importBuild('build.xml') { String oldTargetName ->
        return oldTargetName == 'build' ? 'ant_build' : oldTargetName  // <1>
    }
    // end::import-build[]
    
    // tag::source-sets[]
    sourceSets {
        main {
            java {
                srcDirs = [ ant.properties['src.dir'] ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 688 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/base/customExternalTask/groovy/task/build.gradle

    // tag::external-task-build[]
    plugins {
        id 'groovy'
    // end::external-task-build[]
        id 'maven-publish'
    // tag::external-task-build[]
    }
    
    // tag::gradle-api-dependencies[]
    dependencies {
        implementation gradleApi()
    }
    // end::gradle-api-dependencies[]
    // end::external-task-build[]
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation 'junit:junit:4.13'
    }
    
    group = 'org.gradle'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/publishing/javaLibrary/groovy/build.gradle

    // tag::configure-publishing[]
    group = 'org.example'
    version = '1.0'
    
    // tag::enable-build-id[]
    publishing {
        publications {
            myLibrary(MavenPublication) {
                from components.java
    // end::configure-publishing[]
                withBuildIdentifier()
    // tag::configure-publishing[]
            }
        }
    // end::enable-build-id[]
    
        repositories {
            maven {
                name = 'myRepo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    # only on affected targets, usually. There are targets in //tensorflow/lite that
    # don't pass --nobuild, so they're on their own.
    #
    # Although buildifier checks for formatting as well, "bazel build nobuild"
    # checks for cross-file issues like bad includes or missing BUILD definitions.
    #
    # We can't test on the windows toolchains because they're using a legacy
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top