Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 160 for unhelpful (0.19 sec)

  1. .github/workflows/release-branch-cherrypick.yml

        steps:
        - name: Checkout code
          uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
          with:
            ref: ${{ github.event.inputs.release_branch }}
        - name: Get some helpful info for formatting
          id: cherrypick
          run: |
              git config --global user.name "TensorFlow Release Automation"
              git config --global user.email "******@****.***"
              git fetch origin master
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 14:49:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3IntegrationTest.groovy

            succeeds 'publish'
    
            then:
            module.assertPublishedAsJavaModule()
            module.parsedPom.scopes.isEmpty()
        }
    
        def "fails at configuration time with helpful error when credentials provider can not be resolved"() {
            given:
            def mavenRepo = new MavenS3Repository(server, file("repo"), "/maven", "tests3Bucket")
    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. subprojects/core/src/main/java/org/gradle/initialization/exception/DefaultExceptionAnalyser.java

        }
    
        private static Throwable findDeepestRootException(Throwable exception) {
            // TODO: fix the way we work out which exception is important: TaskExecutionException is not always the most helpful
            Throwable locationAware = null;
            Throwable result = null;
            Throwable contextMatch = null;
            // Guard against malicious overrides of Throwable.equals by
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:10:04 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. pilot/pkg/credentials/kube/secrets.go

    		ret.Cert = scrt.Data[TLSSecretCert]
    		ret.Key = scrt.Data[TLSSecretKey]
    		ret.Staple = scrt.Data[TLSSecretOcspStaple]
    		ret.CRL = scrt.Data[TLSSecretCrl]
    		return ret, nil
    	}
    	// No cert found. Try to generate a helpful error message
    	if hasKeys(scrt.Data, GenericScrtCert, GenericScrtKey) {
    		return nil, fmt.Errorf("found keys %q and %q, but they were empty", GenericScrtCert, GenericScrtKey)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. doc/next/3-tools.md

    ### Trace {#trace}
    
    <!-- go.dev/issue/65316 -->
    The `trace` tool now better tolerates partially broken traces by attempting to
    recover what trace data it can. This functionality is particularly helpful when
    viewing a trace that was collected during a program crash, since the trace data
    leading up to the crash will now [be recoverable](/issue/65319) under most
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_dot.txt

    ! stderr 'cannot find module providing package'
    stderr '^main module \(example\.com\) does not contain package example.com/othermodule$'
    
    # golang.org/issue/27122: 'go build' of a nonexistent directory should produce
    # a helpful "no Go files" error message, not a generic "unknown import path".
    ! go list ./subdir
    stderr '^no Go files in '$WORK'[/\\]gopath[/\\]src[/\\]dir[/\\]subdir$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 22:30:03 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    However, what happens when the same developer switches to a new branch created last week?
    The files are rebuilt, even though the developer is building something that has been built before.
    
    This is where a *build cache* is helpful.
    
    The build cache stores previous build results and restores them when needed.
    It prevents the redundant work and cost of executing time-consuming and expensive processes.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/compatibility/ArtifactAndClassifierCompatibilityIntegrationTest.groovy

                    }
                    // The provider has GMM but we still allow classifier selection - even if the consumer has GMM as well.
                    // Although it is discouraged to use this feature with GMM alone, the behavior is helpful, if a provider
                    // starts publishing GMM but did not do so before.
                    // Then consumers that use a classifier selection, do not suddenly break with a version upgrade that brings in GMM.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/go/types/context.go

    // this was not an explicit design goal of the context type. In fact, due to
    // concurrent use it is convenient not to guarantee de-duplication.
    //
    // Nevertheless, in the future it could be helpful to allow users to leverage
    // contexts to canonicalize instances, and it would probably be possible to
    // achieve such a guarantee.
    
    // A Context is an opaque type checking context. It may be used to share
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/namespace/namespace.go

    func (g Getter) Get() Instance {
    	return g()
    }
    
    // Future creates a Getter for a variable that namespace that will be set at sometime in the future.
    // This is helpful for configuring a setup chain for a test suite that operates on global variables.
    func Future(ns *Instance) Getter {
    	return func() Instance {
    		return *ns
    	}
    }
    
    func Dump(ctx resource.Context, name string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 18:12:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top