Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 239 for sdk1 (0.04 sec)

  1. maven-model-builder/src/test/resources/poms/validation/raw-model/repository-with-basedir-expression.xml

          <url>file://${basedir}/target/remote-repo</url>
        </repository>
        <repository>
          <id>repo-project-basedir</id>
          <url>file://${project.basedir}/sdk/maven/repo</url>
        </repository>
        <repository>
          <id>repo-project-baseUri</id>
          <url>${project.baseUri}/sdk/maven/repo</url>
        </repository>
      </repositories>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 15 18:09:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3IntegrationTest.groovy

            if (TestPrecondition.satisfied(UnitTestPreconditions.MacOsM1)) {
                // FIXME KM M1 support might require aws-sdk-java-v2:2.17.198 and higher; see https://github.com/aws/aws-sdk-java-v2/issues/2942
                //   ...or this is just a harmless ST, see https://github.com/aws/aws-sdk-java/issues/2365
                executer.withStackTraceChecksDisabled()
            }
            succeeds 'publish'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. docs/en/docs/reference/security/index.md

    There are multiple tools that you can use to create those dependables, and they get integrated into OpenAPI so they are shown in the automatic docs UI, they can be used by automatically generated clients and SDKs, etc.
    
    You can import them from `fastapi.security`:
    
    ```python
    from fastapi.security import (
        APIKeyCookie,
        APIKeyHeader,
        APIKeyQuery,
        HTTPAuthorizationCredentials,
        HTTPBasic,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/VisualCppToolChainDiscoveryIntegrationTest.groovy

      - ${toolChain.instanceDisplayName}:
          - The specified installation directory '${file('does-not-exist')}' does not appear to contain a Visual Studio installation.""")
        }
    
        def "tool chain is not available when SDK install is not available"() {
            when:
            buildFile << """
    model {
        toolChains {
            ${toolChain.id} {
                windowsSdkDir "does-not-exist"
            }
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            jvm.standaloneJre == jreDir
            jvm.jre == jvm.standaloneJre
    
            where:
            version    | jreDirName    | jdkDirName
            '1.6.0'    | 'jre6'        | 'jdk1.6.0'
            '1.5.0_22' | 'jre1.5.0_22' | 'jdk1.5.0_22'
        }
    
        def "locates JDK and JRE installs for a typical Java 8 JDK installation on Windows"() {
            given:
            TestFile software = tmpDir.createDir('software')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. pkg/volume/util/hostutil/hostutil_linux_test.go

    	"testing"
    )
    
    func TestIsSharedSuccess(t *testing.T) {
    	successMountInfo :=
    		`62 0 253:0 / / rw,relatime shared:1 - ext4 /dev/mapper/ssd-root rw,seclabel,data=ordered
    76 62 8:1 / /boot rw,relatime shared:29 - ext4 /dev/sda1 rw,seclabel,data=ordered
    78 62 0:41 / /tmp rw,nosuid,nodev shared:30 - tmpfs tmpfs rw,seclabel
    80 62 0:42 / /var/lib/nfs/rpc_pipefs rw,relatime shared:31 - rpc_pipefs sunrpc rw
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/cuda.packages.txt

    # CuDNN: https://docs.nvidia.com/deeplearning/sdk/cudnn-install/index.html#ubuntu-network-installation
    libcudnn9-dev-cuda-12=9.1.1.17-1
    libcudnn9-cuda-12=9.1.1.17-1
    
    # This can be removed once NVIDIA publishes a cuda-12.3.2 Docker image.
    # For now it ensures that we install at least version 12.3.107 of PTXAS,
    # since 12.3.103 has a bug.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 24 17:22:37 UTC 2024
    - 366 bytes
    - Viewed (0)
  8. docs/select/README.md

    - Familiarity with AWS S3 API.
    - Familiarity with Python and installing dependencies.
    
    ### 2. Install boto3
    
    Install `aws-sdk-python` from AWS SDK for Python official docs [here](https://aws.amazon.com/sdk-for-python/)
    
    ### 3. Example
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  9. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3ErrorsIntegrationTest.groovy

            failure.assertHasCause("The AWS Access Key Id you provided does not exist in our records.")
        }
    
        def "should fail without complaining about aws-java-sdk-sts not being in the class path"() {
            setup:
            settingsFile << "rootProject.name = '${projectName}'"
    
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'maven-publish'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

            given:
            "repository simulating Jackson situation" {
                path 'com.amazonaws:aws-java-sdk-core:1.11.438 -> org:cbor:2.6.7'
                path 'com.amazonaws:aws-java-sdk-core:1.11.438 -> org:databind:2.6.7.1'
            }
            buildFile << """
                dependencies {
                    conf "com.amazonaws:aws-java-sdk-core:1.11.438"
                }
                $forceNotation
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top