Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for Eads (0.03 sec)

  1. istioctl/pkg/writer/envoy/configdump/listener.go

    	for _, l := range listenerDump.DynamicListeners {
    		if l.ActiveState != nil && l.ActiveState.Listener != nil {
    			listenerTyped := &listener.Listener{}
    			// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    			l.ActiveState.Listener.TypeUrl = v3.ListenerType
    			err = l.ActiveState.Listener.UnmarshalTo(listenerTyped)
    			if err != nil {
    				return nil, fmt.Errorf("unmarshal listener: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/pilot-dashboard.gen.json

                         }
                      ]
                   },
                   {
                      "matcher": {
                         "id": "byName",
                         "options": "wads"
                      },
                      "properties": [
                         {
                            "id": "displayName",
                            "value": "Authorization"
                         }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. pilot/pkg/security/model/authentication.go

    	EnvoyJwtFilterName = "envoy.filters.http.jwt_authn"
    )
    
    var SDSAdsConfig = &core.ConfigSource{
    	ConfigSourceSpecifier: &core.ConfigSource_Ads{
    		Ads: &core.AggregatedConfigSource{},
    	},
    	// We intentionally do *not* set InitialFetchTimeout to 0s here, as this is used for
    	// credentialName SDS which may refer to secrets which do not exist. We do not want to block the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Striped64.java

       * needed again; and for short-lived ones, it does not matter.
       */
    
      /**
       * Padded variant of AtomicLong supporting only raw accesses plus CAS. The value field is placed
       * between pads, hoping that the JVM doesn't reorder them.
       *
       * <p>JVM intrinsics note: It would be possible to use a release-only form of CAS here, if it were
       * provided.
       */
      static final class Cell {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/Striped64.java

       * needed again; and for short-lived ones, it does not matter.
       */
    
      /**
       * Padded variant of AtomicLong supporting only raw accesses plus CAS. The value field is placed
       * between pads, hoping that the JVM doesn't reorder them.
       *
       * <p>JVM intrinsics note: It would be possible to use a release-only form of CAS here, if it were
       * provided.
       */
      static final class Cell {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/Striped64.java

       * needed again; and for short-lived ones, it does not matter.
       */
    
      /**
       * Padded variant of AtomicLong supporting only raw accesses plus CAS. The value field is placed
       * between pads, hoping that the JVM doesn't reorder them.
       *
       * <p>JVM intrinsics note: It would be possible to use a release-only form of CAS here, if it were
       * provided.
       */
      static final class Cell {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/Striped64.java

       * needed again; and for short-lived ones, it does not matter.
       */
    
      /**
       * Padded variant of AtomicLong supporting only raw accesses plus CAS. The value field is placed
       * between pads, hoping that the JVM doesn't reorder them.
       *
       * <p>JVM intrinsics note: It would be possible to use a release-only form of CAS here, if it were
       * provided.
       */
      static final class Cell {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/adsc/delta.go

    	h.nack = reason
    }
    
    // DeltaADSConfig for delta ADS connection.
    type DeltaADSConfig struct {
    	Config
    }
    
    type Resource struct {
    	Name    string
    	Version string
    	Entity  proto.Message
    }
    
    type HandlerFunc func(ctx HandlerContext, res *Resource, event Event)
    
    // Client is a stateful ADS (Aggregated Discovery Service) client designed to handle delta updates from an xDS server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/crypto/aes/gcm_s390x.go

    // The length of data must be a multiple of 16-bytes.
    //
    //go:noescape
    func ghash(key *gcmHashKey, hash *[16]byte, data []byte)
    
    // paddedGHASH pads data with zeroes until its length is a multiple of
    // 16-bytes. It then calculates a new value for hash using the GHASH algorithm.
    func (g *gcmAsm) paddedGHASH(hash *[16]byte, data []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/sds/sdsservice_test.go

    		CertChain:    fakeCertificateChain,
    		Key:          fakePrivateKey,
    	}
    	expectRoot := Expectation{
    		ResourceName: rootResourceName,
    		RootCert:     fakeRootCert,
    	}
    	log.FindScope("ads").SetOutputLevel(log.DebugLevel)
    	t.Run("multiplexed", func(t *testing.T) {
    		// In reality Envoy doesn't do this, but it *could* per XDS spec
    		s := setupSDS(t)
    		c := s.Connect()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top