Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 308 for Aleman (0.06 sec)

  1. ci/official/containers/ml_build/Dockerfile

    1. RUN ln -s /usr/lib/llvm-18/bin/clang /usr/bin/clang
    2.  
    3. # Install various tools.
    4. # - bats: bash unit testing framework
    5. # - bazelisk: always use the correct bazel version
    6. # - buildifier: clean bazel build deps
    7. # - buildozer: clean bazel build deps
    8. # - gcloud SDK: communicate with Google Cloud Platform (GCP) for RBE, CI
    9. # - patchelf: Utility tool to modify existing ELF executables and libraries
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Oct 30 00:07:17 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. util/gradle_integration_tests.sh

    1. #!/bin/bash
    2.  
    3. set -eu
    4.  
    5. ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom,!guava-gwt' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true
    6. ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -f android
    7.  
    8. # Gradle Wrapper overwrites some files when it runs.
    9. # To avoid modifying the Git client, we copy everything we need to another directory.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/Gradleception.kt

    1. tasks = "clean :distributions-full:install"
    2. gradleParams =
    3. "-Pgradle_installPath=dogfood-first -PignoreIncomingBuildReceipt=true -PbuildTimestamp=$dogfoodTimestamp1 $defaultParameters"
    4. }
    5.  
    6. localGradle {
    7. name = "BUILD_WITH_BUILT_GRADLE"
    8. tasks = "clean :distributions-full:install"
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 08 12:58:46 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/bootstrapdump.json

    1. },
    2. "metadata": {
    3. "build.type": "RELEASE",
    4. "revision.sha": "436f365a8007cd8a13a9f1321e7cce94bcc8883e",
    5. "revision.status": "Clean",
    6. "ssl.version": "BoringSSL"
    7. }
    8. }
    9. }
    10. }
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu May 05 11:02:00 UTC 2022
    - 739 bytes
    - Viewed (0)
  5. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/local/DefaultLocalMavenInvokerTest.java

    1. invoke(tempDir, Arrays.asList("clean", "verify"));
    2. }
    3.  
    4. @Disabled("Until we move off fully from File")
    5. @Test
    6. void jimFs() throws Exception {
    7. try (FileSystem fs = Jimfs.newFileSystem(Configuration.unix())) {
    8. invoke(fs.getPath("/"), Arrays.asList("clean", "verify"));
    9. }
    10. }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/configdump.json

    1. "patch": 3
    2. },
    3. "metadata": {
    4. "build.type": "RELEASE",
    5. "revision.sha": "436f365a8007cd8a13a9f1321e7cce94bcc8883e",
    6. "revision.status": "Clean",
    7. "ssl.version": "BoringSSL"
    8. }
    9. }
    10. }
    11. }
    12. }
    13. ]
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jun 15 05:44:44 UTC 2021
    - 742 bytes
    - Viewed (0)
  7. docs_src/events/tutorial003.py

    1.  
    2. ml_models = {}
    3.  
    4.  
    5. @asynccontextmanager
    6. async def lifespan(app: FastAPI):
    7. # Load the ML model
    8. ml_models["answer_to_everything"] = fake_answer_to_everything_ml_model
    9. yield
    10. # Clean up the ML models and release the resources
    11. ml_models.clear()
    12.  
    13.  
    14. app = FastAPI(lifespan=lifespan)
    15.  
    16.  
    17. @app.get("/predict")
    18. async def predict(x: float):
    19. result = ml_models["answer_to_everything"](x)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Mar 07 15:46:00 UTC 2023
    - 569 bytes
    - Viewed (0)
  8. disabled-Jenkinsfile.s390x

    1. def buildOs = 'linux'
    2. def buildJdk = '17'
    3. def buildMvn = '3.8.x'
    4. def runITsOses = ['linux']
    5. def runITsJdks = ['17']
    6. def runITsMvn = '3.8.x'
    7. def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
    8. def tests
    9.  
    10. try {
    11.  
    12. def osNode = jenkinsEnv.labelForOS(buildOs)
    13. node('s390x') {
    14. dir('build') {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Sep 30 14:11:55 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. .github/workflows/maven_build_itself.yml

    1. echo "${{ env.TAR_BALL }} does not exist."
    2. exit 1;
    3. fi
    4. env:
    5. TAR_BALL: apache-maven/target/apache-maven-bin.tar.gz
    6.  
    7. - name: Clean with Maven
    8. run: ./mvnw -e -B -V clean
    9.  
    10. - name: Build again with Maven SNAPSHOT
    11. shell: bash
    12. run: |
    13. set +e
    14. export PATH=${{ env.TEMP_MAVEN_BIN_DIR }}:$PATH
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/CheckTeamCityKotlinDSL.kt

    1. description = "Check Kotlin DSL in .teamcity/"
    2.  
    3. applyDefaultSettings()
    4. steps {
    5. script {
    6. name = "RUN_MAVEN_CLEAN_VERIFY"
    7. scriptContent = "./mvnw clean verify -Dmaven.repo.local=../build"
    8. workingDir = ".teamcity"
    9. }
    10. script {
    11. name = "CLEAN_M2"
    12. executionMode = BuildStep.ExecutionMode.ALWAYS
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Oct 30 04:10:13 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top