Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for Verifying (0.27 sec)

  1. docs/security/security.md

    contained in this repository.
    
    If you believe you have discovered a security vulnerability, please follow the
    guidelines at https://bugcrowd.com/squareopensource
    
    
    ## Verifying Artifacts
    
    We sign our artifacts using this [key][signing_key]:
    
    ```
    pub rsa4096/dbd744ace7ade6aa50dd591f66b50994442d2d40 2021-07-09T14:50:19Z
    	 Hash=a79b48fd6a1f31699c788b50c97d0b98
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 10:19:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. pkg/test/echo/proto/echo.proto

      // If non-empty, make the request with the corresponding cert and key file.
      string certFile = 16;
      string keyFile = 17;
      // If non-empty, verify the server CA with the ca cert file.
      string caCertFile = 18;
      // Skip verifying peer's certificate.
      bool insecureSkipVerify = 19;
      // List of ALPNs to present. If not set, this will be automatically be set based on the protocol
      Alpn alpn = 13;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. security/pkg/credentialfetcher/plugin/gce.go

    	rotateToken = enable
    }
    
    // GCEPlugin is the plugin object.
    type GCEPlugin struct {
    	// aud is the unique URI agreed upon by both the instance and the system verifying the instance's identity.
    	// For more info: https://cloud.google.com/compute/docs/instances/verifying-instance-identity
    	aud string
    
    	// The location to save the identity token
    	jwtPath string
    
    	// identity provider
    	identityProvider string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. cluster/images/etcd-version-monitor/README.md

    - Place the 'etcd-version-monitor.yaml' in the manifests directory of
      kubelet on the master machine.
    
    *Note*: This tool has to run on the same machine as etcd, as communication
    with etcd is over localhost.
    
    **VERIFYING THE TOOL**
    
    - Goto [http://localhost:9101/metrics](http://localhost:9101/metrics) in order to view the exported metrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 04:03:37 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/state/testing/util.go

    	return []byte(mc.Content), nil
    }
    
    // UnmarshalCheckpoint fakes unmarshaling
    func (mc *MockCheckpoint) UnmarshalCheckpoint(blob []byte) error {
    	return nil
    }
    
    // VerifyChecksum fakes verifying checksum
    func (mc *MockCheckpoint) VerifyChecksum() error {
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 15 16:34:53 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/requestheader.go

    	// the user.Info.Extra.  All values of all matching headers will be added.
    	ExtraHeaderPrefixes headerrequest.StringSliceProvider
    	// CAContentProvider the options for verifying incoming connections using mTLS.  Generally this points to CA bundle file which is used verify the identity of the front proxy.
    	//	It may produce different options at will.
    	CAContentProvider dynamiccertificates.CAContentProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

    //  - Promoting VarHandle ops to function input/outputs.
    //  - Freezing global tensor pass.
    //
    // This path assumes that all the VariableV2 ops is read-only via verifying the
    // heuristic method that assumes that all the users of them is Identity op,
    // fed directly.
    class ConvertReadonlyReferenceVariablesToResourceVariablesPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top