Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 114 for Eads (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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. 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)
  8. 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)
  9. 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)
  10. pilot/pkg/autoregistration/controller.go

    		return
    	}
    	proxy := conn.Proxy()
    	// check if the WE already exists, update the status
    	entryName, autoCreate := proxy.WorkloadEntry()
    	if entryName == "" {
    		return
    	}
    
    	// if there is still an ads connection, do not unregister.
    	if remainingConnections := c.adsConnections.Disconnect(conn); remainingConnections {
    		return
    	}
    
    	proxy.RLock()
    	defer proxy.RUnlock()
    	workload := &workItem{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top