Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,080 for Builds (0.42 sec)

  1. ci/official/utilities/setup_macos.sh

    fi
    
    # TFCI Mac VM images do not have twine installed by default so we need to
    # install it manually. We use Twine in nightly builds to upload Python packages
    # to PyPI.
    if [[ "$TFCI_MACOS_TWINE_INSTALL_ENABLE" == 1 ]]; then
      pip install twine==3.6.0
    fi
    
    # Scheduled nightly and release builds upload build artifacts (Pip packages,
    # Libtensorflow archives) to GCS buckets. TFCI Mac VMs need to authenticate as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. testing/performance/README.md

    ### Performance test builds
    
    The build templates live in [`src/templates`](src/templates). Each template build is parameterized to some degree. For example, it is possible to define how many projects, source
    or test files to generate for a performance test build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/settings.gradle

    // This is an empty umbrella build including all the component builds.
    // This build is not necessarily needed. The component builds work independently.
    
    includeBuild('platforms')
    includeBuild('build-logic')
    
    includeBuild('aggregation')
    
    includeBuild('user-feature')
    includeBuild('admin-feature')
    
    includeBuild('server-application')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 361 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/settings.gradle.kts

    // This is an empty umbrella build including all the component builds.
    // This build is not necessarily needed. The component builds work independently.
    
    includeBuild("platforms")
    includeBuild("build-logic")
    
    includeBuild("aggregation")
    
    includeBuild("user-feature")
    includeBuild("admin-feature")
    
    includeBuild("server-application")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 361 bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/LoadProjectsBuildOperationType.java

            /**
             * The path of the build configuration that contains these projects.
             * This will be ':' for top-level builds. Nested builds will have a sub-path.
             *
             * See {@code org.gradle.api.internal.GradleInternal#getIdentityPath()}.
             */
            String getBuildPath();
    
            /**
             * A description of the root Project for this build.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    == Defining and using a composite build
    
    This sample shows how 2 Gradle builds that are normally developed separately and combined using binary integration can be wired together into a composite build with source integration. The `my-utils` multiproject build produces 2 different java libraries, and the `my-app` build produces an executable using functions from those libraries.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. README.fips.md

    # MinIO FIPS Builds
    
    MinIO creates FIPS builds using a patched version of the Go compiler (that uses BoringCrypto, from BoringSSL, which is [FIPS 140-2 validated](https://csrc.nist.gov/csrc/media/projects/cryptographic-module-validation-program/documents/security-policies/140sp2964.pdf)) published by the Golang Team [here](https://github.com/golang/go/tree/dev.boringcrypto/misc/boring).
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 869 bytes
    - Viewed (0)
  8. src/time/zoneinfo_ios.go

    func gorootZoneSource(goroot string) (string, bool) {
    	// The working directory at initialization is the root of the
    	// app bundle: "/private/.../bundlename.app". That's where we
    	// keep zoneinfo.zip for tethered iOS builds.
    	// For self-hosted iOS builds, the zoneinfo.zip is in GOROOT.
    	var roots []string
    	if goroot != "" {
    		roots = append(roots, goroot+"/lib/time")
    	}
    	wd, err := syscall.Getwd()
    	if err == nil {
    		roots = append(roots, wd)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/main/resources/header.html

                        </ul>
                    </li>
                    <li><a class="nav-dropdown" data-toggle="collapse" href="#authoring-multi-project-builds" aria-expanded="false" aria-controls="authoring-multi-project-builds">Structuring Builds</a>
                        <ul id="authoring-multi-project-builds">
                            <li><a href="../userguide/multi_project_builds.html">Structuring Projects with Gradle</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/projectReports/groovy/webapp/build.gradle

    tasks.register('libs'){
        group = 'build'
        description = 'Builds the JAR'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 81 bytes
    - Viewed (0)
Back to top