Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 266 for It (0.02 sec)

  1. security/pkg/pki/util/keycertbundle.go

    	return extractCertExpiryTimestamp("CA cert", b.GetCertChainPem())
    }
    
    // TimeBeforeCertExpires returns the time duration before the cert gets expired.
    // It returns an error if it failed to extract the cert expiration timestamp.
    // The returned time duration could be a negative value indicating the cert has already been expired.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/typed_xds_cache.go

    	if pushReq == nil || pushReq.Start.Equal(time.Time{}) {
    		return
    	}
    	// It will not overflow until year 2262
    	token := CacheToken(pushReq.Start.UnixNano())
    	l.mu.Lock()
    	defer l.mu.Unlock()
    	if token < l.token {
    		// entry may be stale, we need to drop it. This can happen when the cache is invalidated
    		// after we call Clear or ClearAll.
    		return
    	}
    	cur, f := l.store.Get(k)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this.
      // If this is unset, all resources matched by the policy are validated by this binding
      // When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_waypoint.go

    		if weighted[0].HostRewriteSpecifier != nil && action.HostRewriteSpecifier == nil {
    			// Ideally, if the weighted cluster overwrites authority, it has precedence. This mirrors behavior of headers,
    			// because for headers we append the weighted last which allows it to Set and wipe out previous Adds.
    			// However, Envoy behavior is different when we set at both cluster level and route level, and we want
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. pkg/security/security.go

    type SecretManager interface {
    	// GenerateSecret generates new secret for the given resource.
    	//
    	// The current implementation also watched the generated secret and trigger a callback when it is
    	// near expiry. It will constructs the SAN based on the token's 'sub' claim, expected to be in
    	// the K8S format. No other JWTs are currently supported due to client logic. If JWT is
    	// missing/invalid, the resourceName is used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			ResourceVersion:   svc.ResourceVersion,
    		},
    		Spec: se,
    	}
    
    	// TODO: WorkloadSelector
    
    	// TODO: preserve ServiceRegistry. The reverse conversion sets it to 'external'
    	// TODO: preserve UID ? It seems MCP didn't preserve it - but that code path was not used much.
    
    	// TODO: ClusterExternalPorts map - for NodePort services, with "traffic.istio.io/nodeSelector" ann
    	// It's a per-cluster map
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.admissionregistration.v1;
    
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/tls.go

    		// an outbound listener for each pod in a headless service. There is thus no need to do a SNI match. It saves us from having to
    		// generate expensive permutations of the host name just like RDS does..
    		// NOTE that we cannot have two services with the same VIP as our listener build logic will treat it as a collision and
    		// ignore one of the services.
    		svcListenAddress := service.GetAddressForProxy(node)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

    // of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.
    message NonResourcePolicyRule {
      // `verbs` is a list of matching verbs and may not be empty.
      // "*" matches all verbs. If it is present, it must be the only entry.
      // +listType=set
      // Required.
      repeated string verbs = 1;
    
      // `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty.
      // For example:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

    // of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.
    message NonResourcePolicyRule {
      // `verbs` is a list of matching verbs and may not be empty.
      // "*" matches all verbs. If it is present, it must be the only entry.
      // +listType=set
      // Required.
      repeated string verbs = 1;
    
      // `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty.
      // For example:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top