Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,756 for securityv1 (0.32 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_s390x.go

    	// cryptography facilities
    	msa  facility = 17  // message-security-assist
    	msa3 facility = 76  // message-security-assist extension 3
    	msa4 facility = 77  // message-security-assist extension 4
    	msa5 facility = 57  // message-security-assist extension 5
    	msa8 facility = 146 // message-security-assist extension 8
    	msa9 facility = 155 // message-security-assist extension 9
    
    	// vector facilities
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  2. internal/config/browser/browser.go

    // Browser sub-system constants
    const (
    	// browserCSPPolicy setting name for Content-Security-Policy response header value
    	browserCSPPolicy = "csp_policy"
    	// browserHSTSSeconds setting name for Strict-Transport-Security response header, amount of seconds for 'max-age'
    	browserHSTSSeconds = "hsts_seconds"
    	// browserHSTSIncludeSubdomains setting name for Strict-Transport-Security response header 'includeSubDomains' flag (true or false)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (1)
  3. CONTRIBUTING.md

    ============
    
    Keeping the project small and stable limits our ability to accept new contributors. We are not
    seeking new committers at this time, but some small contributions are welcome.
    
    If you've found a security problem, please follow our [bug bounty][security] program.
    
    If you've found a bug, please contribute a failing test case so we can study and fix it.
    
    If you have a new feature idea, please build it in an external library. There are
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 14 08:26:50 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. docs/contribute/contributing.md

    ============
    
    Keeping the project small and stable limits our ability to accept new contributors. We are not
    seeking new committers at this time, but some small contributions are welcome.
    
    If you've found a security problem, please follow our [bug bounty][security] program.
    
    If you've found a bug, please contribute a failing test case so we can study and fix it.
    
    If you have a new feature idea, please build it in an external library. There are
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 14 08:26:50 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/authz-a.yaml

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: allow-policy
    spec:
      action: ALLOW
      rules:
      - to:
        - operation:
            methods: ["*"]
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: deny-policy
    spec:
      action: DENY
      rules:
      - to:
        - operation:
            methods: ["*"]
      - to:
        - operation:
            methods: ["*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 402 bytes
    - Viewed (0)
  6. platforms/software/security/src/main/java/org/gradle/security/internal/SecuritySupport.java

    import java.nio.file.Files;
    import java.security.Security;
    import java.util.ArrayList;
    import java.util.List;
    
    public class SecuritySupport {
        private static final Logger LOGGER = Logging.getLogger(SecuritySupport.class);
    
        private static final int BUFFER = 4096;
        public static final String KEYS_FILE_EXT = ".keys";
    
        static {
            if (Security.getProvider(BouncyCastleProvider.PROVIDER_NAME) == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. fastapi/security/api_key.py

                Doc(
                    """
                    Security scheme name.
    
                    It will be included in the generated OpenAPI (e.g. visible at `/docs`).
                    """
                ),
            ] = None,
            description: Annotated[
                Optional[str],
                Doc(
                    """
                    Security scheme description.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 23 22:29:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/DefaultSignatureVerificationServiceFactory.java

    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.security.internal.EmptyPublicKeyService;
    import org.gradle.security.internal.Fingerprint;
    import org.gradle.security.internal.PublicKeyDownloadService;
    import org.gradle.security.internal.PublicKeyResultBuilder;
    import org.gradle.security.internal.PublicKeyService;
    import org.gradle.security.internal.SecuritySupport;
    import org.gradle.util.internal.BuildCommencedTimeProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/hsts.go

    		// Chrome and Mozilla Firefox maintain an HSTS preload list
    		// issue : golang.org/issue/26162
    		// Set the Strict-Transport-Security header if it is not already set
    		if _, ok := w.Header()["Strict-Transport-Security"]; !ok {
    			w.Header().Set("Strict-Transport-Security", allDirectives)
    		}
    		handler.ServeHTTP(w, req)
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 12 08:42:53 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/caclient/credentials.go

    import (
    	"context"
    	"fmt"
    
    	"google.golang.org/grpc/credentials"
    
    	"istio.io/istio/pkg/security"
    )
    
    // TokenProvider is a grpc PerRPCCredentials that can be used to attach a JWT token to each gRPC call.
    // TokenProvider can be used for XDS, which may involve token exchange through STS.
    type DefaultTokenProvider struct {
    	opts *security.Options
    }
    
    var _ credentials.PerRPCCredentials = &DefaultTokenProvider{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top