Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for Verifying (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ResettableExpectations.java

     * test expectations before cleanup so they can be silenced if necessary.
     */
    public interface ResettableExpectations {
        /**
         * Resets all pending expectations after verifying them.
         * Must throw when a verification fails.
         */
        void resetExpectations();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/fetch.go

    		zip, err := CachePath(ctx, mod, "zip")
    		if err != nil {
    			base.Fatalf("verifying %v", module.VersionError(mod, err))
    		}
    		err = hashZip(mod, zip, ziphash)
    		if err != nil {
    			base.Fatalf("verifying %v", module.VersionError(mod, err))
    		}
    		return
    	}
    	h := string(data)
    	if !strings.HasPrefix(h, "h1:") {
    		base.Fatalf("verifying %v", module.VersionError(mod, fmt.Errorf("unexpected ziphash: %q", h)))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/commandLineOption-stringOption/groovy/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)
  9. ci/official/debug_tfci.sh

    # limitations under the License.
    # ==============================================================================
    # This script dumps some information about the environment. It's most useful
    # for verifying changes to the TFCI scripts system, and most users won't need
    # to interact with it at all.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    echo "==TFCI== env outside of tfrun:"
    env
    echo "==TFCI== env inside of tfrun:"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 01 19:54:25 UTC 2023
    - 1022 bytes
    - Viewed (0)
  10. samples/extauthz/README.md

    - The ext authz server will add the `x-ext-authz-check-received` header to the user request. The content is the dump of
      the check request it received from the ext-authz filter. This header is useful in verifying the ext-authz filter sending
      the expected request to the ext authz server.
    
    - The ext authz server will add (or override if it already exists) the header `x-ext-authz-additional-header-override` to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top