Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,057 for fetching (0.15 sec)

  1. tools/dump-docker-logs.sh

    set -eu
    
    if [ -z ${CI+x} ]; then
      # When not in CI, do nothing
      exit 0;
    fi
    
    echo "Fetching docker container status"
    docker ps || true
    echo "Fetching buildx logs"
    docker logs buildx_buildkit_container-builder0 || true
    echo "Fetching docker logs"
    cat /var/log/docker.log || true
    echo "Fetching local registry logs"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 25 20:37:36 UTC 2021
    - 939 bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

            then: "fetching with Isolated Projects"
            fixture.assertStateStored {
                modelsCreated(":", GradleProject, IsolatedGradleProjectInternal)
                modelsCreated(":lib1", IsolatedGradleProjectInternal)
            }
    
            checkGradleProject(projectModel, expectedProjectModel)
    
            when: "fetching again with Isolated Projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            """
    
            when: "fetching without Isolated Projects"
            def originalIdeaModel = fetchModel(IdeaProject)
    
            then:
            fixture.assertNoConfigurationCache()
            originalIdeaModel.modules.size() == 3
            originalIdeaModel.modules.every { it.children.isEmpty() } // IdeaModules are always flattened
    
            when: "fetching with Isolated Projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/transport/transport.go

    	initOnce   sync.Once
    	initErr    error
    }
    
    const extraUsage = `    -tls_cert             TLS client certificate file for fetching profile and symbols
        -tls_key              TLS private key file for fetching profile and symbols
        -tls_ca               TLS CA certs file for fetching profile and symbols`
    
    // New returns a round tripper for making requests with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiInvocationValidationIntegrationTest.groovy

    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsToolingApiInvocationValidationIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
        def "reports cross project access from build script when fetching custom tooling model"() {
            given:
            settingsFile << """
                include('a')
                include('b')
            """
            withSomeToolingModelBuilderPluginInBuildSrc()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. releasenotes/notes/remove-operator-httpfetch.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 16:13:50 UTC 2022
    - 141 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_prefer_compatible.txt

    ! go list -m github.com/russross/blackfriday@patch
    stderr '^go: github.com/russross/blackfriday@patch: can''t query version "patch" of module github.com/russross/blackfriday: no existing version is required$'
    
    
    # If we're fetching directly from version control, ignored +incompatible
    # versions should also be omitted by 'go list'.
    
    # (Note that they may still be included in results from a proxy: in proxy mode,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. releasenotes/notes/deprecate-operator-httpfetch.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 02 15:05:22 UTC 2022
    - 144 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/GradleProjectBuilderOptionsCrossVersionSpec.groovy

    import org.gradle.tooling.model.idea.IdeaProject
    
    @TargetGradleVersion(">=6.1")
    class GradleProjectBuilderOptionsCrossVersionSpec extends ToolingApiSpecification {
    
        def "realizes #description when fetching GradleProject with option value #optionDescription"() {
            buildFile << """
                tasks.create("a") {
                    println "realizing non-lazy task"
                }
    
                tasks.register("b") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pkg/model/authentication.go

    	SDSClusterName = "sds-grpc"
    
    	// SDSDefaultResourceName is the default name in sdsconfig, used for fetching normal key/cert.
    	SDSDefaultResourceName = "default"
    
    	// SDSRootResourceName is the sdsconfig name for root CA, used for fetching root cert.
    	SDSRootResourceName = "ROOTCA"
    )
    
    // Preconfigured SDS configs to avoid excessive memory allocations
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top