Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 3,080 for Builds (0.11 sec)

  1. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/IncludedBuildDependencySubstitutionsBuilder.java

            if (build instanceof IncludedBuildState) {
                build((IncludedBuildState) build);
            } else if (build instanceof RootBuildState) {
                build((RootBuildState)build);
            } else {
                throw new IllegalArgumentException();
            }
        }
    
        private void build(IncludedBuildState build) {
            if (processed.contains(build)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/stack.go

    // stack guard size. Larger multipliers are used for non-optimized
    // builds that have larger stack frames or for specific targets.
    func stackGuardMultiplier(race bool) int {
    	// This arithmetic must match that in runtime/internal/sys/consts.go:StackGuardMultiplier.
    	n := 1
    	// On AIX, a larger stack is needed for syscalls.
    	if buildcfg.GOOS == "aix" {
    		n += 1
    	}
    	// The race build also needs more stack.
    	if race {
    		n += 1
    	}
    	return n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 904 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_basics.adoc

    *Build scripts* detail to Gradle what steps to take to build the project.
    
    Each project can include one or more build scripts.
    
    === Dependency Management
    
    *Dependency management* is an automated technique for declaring and resolving external resources required by a project.
    
    Each project typically includes a number of external dependencies that Gradle will resolve during the build.
    
    === Tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_gomodcache_vendor.txt

    # with vendored files.
    # See issue #46400
    [short] skip 'builds and links a binary twice'
    go mod tidy
    go mod vendor
    
    go build -mod=vendor
    go version -m example$GOEXE
    cp stdout version-m.txt
    
    env GOMODCACHE=$WORK${/}modcache
    go build -mod=vendor
    go version -m example$GOEXE
    cmp stdout version-m.txt
    
    -- go.mod --
    module example
    go 1.22
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 17:19:18 UTC 2024
    - 568 bytes
    - Viewed (0)
  5. tensorflow/c/README.md

    # TensorFlow C API
    
    - See [www.tensorflow.org/install/lang_c](https://www.tensorflow.org/install/lang_c)
    - Nightly builds:
      - [Linux CPU-only](https://storage.googleapis.com/tensorflow-nightly/github/tensorflow/lib_package/libtensorflow-cpu-linux-x86_64.tar.gz)
      - [Linux GPU](https://storage.googleapis.com/tensorflow-nightly/github/tensorflow/lib_package/libtensorflow-gpu-linux-x86_64.tar.gz)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 23 01:38:30 UTC 2018
    - 539 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/plugin_reference.adoc

    Generates Eclipse project files for the build that can be opened by the IDE. This set of plugins can also be used to fine tune http://projects.eclipse.org/projects/tools.buildship[Buildship's] import process for Gradle builds.
    
    <<idea_plugin.adoc#idea_plugin,IntelliJ IDEA>>::
    Generates IDEA project files for the build that can be opened by the IDE. It can also be used to fine tune IDEA's import process for Gradle builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== buildSrc can now see included builds from the root
    
    Previously, `buildSrc` was built in such a way that included builds were ignored from the root build.
    
    Since Gradle 6.7, `buildSrc` can see any included build from the root build.
    This may cause dependencies to be substituted from an included build in `buildSrc`.
    This may also change the order in which some builds are executed if an included build is needed by `buildSrc`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SymlinkContinuousIntegrationTest.groovy

            def linkdir = baseDir.createDir("linkdir")
            def symlink = linkdir.file("link")
            // Since we remove symlinks at the end of the build from the VFS, we
            // need an existing sibling of the symlink to ensure the parent directory of
            // the symlink is watched between builds.
            linkdir.file("existing").createFile()
            buildFile << """
        task echo {
            def symlink = file("${symlink.toURI()}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. tensorflow/cc/ops/while_loop.h

    // * inputs: the initial values of the loop variables. Must be non-empty.
    // * cond: a function that builds the condition graph of the loop. Takes the
    //     current loop variables as inputs and returns a scalar boolean Output
    //     indicating whether the loop should continue.
    // * body: a function that builds the body graph of the loop. Takes the current
    //     loop variables as inputs and returns the updated loop variables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/apitesting/codec.go

    		if err != nil {
    			panic(err)
    		}
    	}
    }
    
    // InstallOrDieFunc mirrors install functions that require success
    type InstallOrDieFunc func(scheme *runtime.Scheme)
    
    // SchemeForInstallOrDie builds a simple test scheme and codecfactory pair for easy unit testing from higher level install methods
    func SchemeForInstallOrDie(installFns ...InstallOrDieFunc) (*runtime.Scheme, runtimeserializer.CodecFactory) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 01 19:31:12 UTC 2018
    - 3.9K bytes
    - Viewed (0)
Back to top