Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for Verifying (0.12 sec)

  1. src/cmd/go/testdata/script/mod_sumdb.txt

    stderr 'go: rsc.io/quote@v1.5.2: verifying module: checksum mismatch'
    stderr 'downloaded: h1:3fEy'
    stderr 'localhost.localdev/sumdb: h1:wrong'
    stderr 'SECURITY ERROR\nThis download does NOT match the one reported by the checksum server.'
    ! go get rsc.io/sampler
    ! go get golang.org/x/text
    
    go mod edit -require rsc.io/quote@v1.5.2
    ! go mod tidy
    stderr 'go: rsc.io/quote@v1.5.2: verifying go.mod: checksum mismatch'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_sumdb_proxy.txt

    env GOPROXY=direct
    ! go get rsc.io/fortune@v1.0.0
    stderr 'verifying module: rsc.io/fortune@v1.0.0: .*: no such host localhost.localdev'
    rm $GOPATH/pkg/mod/cache/download/sumdb
    rm go.sum
    
    # proxy 404 falls back to direct access (which fails)
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    env GOPROXY=$proxy/sumdb-404
    ! go get rsc.io/fortune@v1.0.0
    stderr 'verifying.*localhost.localdev'
    rm $GOPATH/pkg/mod/cache/download/sumdb
    rm go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/commandLineOption-stringOption/tests/taskCommandLineOption.out

    Verifying URL 'http://www.google.com/'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  4. bin/update_proxy.sh

    SLEEP_TIME=60
    
    printf "Verifying %s is available\n" "$ISTIO_ENVOY_RELEASE_URL"
    until curl --output /dev/null --silent --head --fail "$ISTIO_ENVOY_RELEASE_URL"; do
        printf '.'
        sleep $SLEEP_TIME
    done
    printf '\n'
    
    printf "Verifying %s is available\n" "$ISTIO_ENVOY_ARM_RELEASE_URL"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 07:59:44 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. releasenotes/notes/limit-csr-clusterrole.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Added** check to limit the clusterrole for k8s CSR permissions for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:22 UTC 2023
    - 272 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/commandLineOption-stringOption/kotlin/buildSrc/src/main/java/UrlVerify.java

            this.url = url;
        }
    
        @Input
        public String getUrl() {
            return url;
        }
    
        @TaskAction
        public void verify() {
            getLogger().quiet("Verifying URL '{}'", url);
    
            // verify URL by making a HTTP call
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 665 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    	clientCertificateExpirationHistogram.WithContext(req.Context()).Observe(remaining.Seconds())
    	chains, err := req.TLS.PeerCertificates[0].Verify(optsCopy)
    	if err != nil {
    		return nil, false, fmt.Errorf(
    			"verifying certificate %s failed: %w",
    			certificateIdentifier(req.TLS.PeerCertificates[0]),
    			err,
    		)
    	}
    
    	var errlist []error
    	for _, chain := range chains {
    		user, ok, err := a.user.User(chain)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2exec/BUILD

    # Description:
    #   Integration tests of converter & interpreter.
    #
    # There should be few tests in here and it should be rare where the execution
    # tests are not tested by unit tests already. This is useful for verifying some
    # runtime behavior, but the majority of runtime tests should be TFLite side and
    # invariants only verified in the converter/compiler.
    
    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_download_json.txt

    env GO111MODULE=on
    env GOSUMDB=$sumdb' '$proxy/sumdb-wrong
    
    # download -json with version should print JSON on sumdb failure
    ! go mod download -json 'rsc.io/quote@<=v1.5.0'
    stdout '"Error": ".*verifying (module|go.mod)'
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 27 18:28:53 UTC 2020
    - 243 bytes
    - Viewed (0)
  10. operator/cmd/mesh/verify.go

    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/util/formatting"
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/operator/pkg/verifier"
    )
    
    // NewVerifyCommand creates a new command for verifying Istio Installation Status
    func NewVerifyCommand(ctx cli.Context) *cobra.Command {
    	var (
    		filenames     = []string{}
    		opts          clioptions.ControlPlaneOptions
    		manifestsPath string
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top