Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 114 for Eads (0.07 sec)

  1. pilot/pkg/networking/core/extension/wasmplugin.go

    	"istio.io/istio/pkg/util/sets"
    	_ "istio.io/istio/pkg/wasm" // include for registering wasm logging scope
    )
    
    var defaultConfigSource = &core.ConfigSource{
    	ConfigSourceSpecifier: &core.ConfigSource_Ads{
    		Ads: &core.AggregatedConfigSource{},
    	},
    	ResourceApiVersion: core.ApiVersion_V3,
    	// we block proxy init until WasmPlugins are loaded because they might be
    	// critical for security (e.g. authn/authz)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/sha3.go

    		keccakF1600(&d.a)
    	case spongeSqueezing:
    		// If we're squeezing, we need to apply the permutation before
    		// copying more output.
    		keccakF1600(&d.a)
    		d.i = 0
    		copyOut(d, d.storage[:d.rate])
    	}
    }
    
    // pads appends the domain separation bits in dsbyte, applies
    // the multi-bitrate 10..1 padding rule, and permutes the state.
    func (d *state) padAndPermute() {
    	// Pad with this instance's domain-separator bits. We know that there's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

          assertTrue(bb.remaining() < bufferSize);
          int before = processCalled;
          super.processRemaining(bb);
          int after = processCalled;
          assertEquals(before + 1, after); // default implementation pads and calls process()
          processCalled--; // don't count the tail invocation (makes tests a bit more understandable)
        }
    
        // ensures that the number of invocations looks sane
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

          assertTrue(bb.remaining() < bufferSize);
          int before = processCalled;
          super.processRemaining(bb);
          int after = processCalled;
          assertEquals(before + 1, after); // default implementation pads and calls process()
          processCalled--; // don't count the tail invocation (makes tests a bit more understandable)
        }
    
        // ensures that the number of invocations looks sane
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/deltatest.go

    	deleted model.DeletedResources,
    	usedDelta bool,
    	delta model.ResourceDelta,
    	incremental bool,
    ) {
    	current := con.proxy.GetWatchedResource(w.TypeUrl).LastResources
    	if current == nil {
    		log.Debugf("ADS:%s: resources initialized", v3.GetShortType(w.TypeUrl))
    		return
    	}
    	if deltaRes == nil && deleted == nil && len(sotwRes) == 0 {
    		// TODO: it suspicious full is never nil - are there case where we should be deleting everything?
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/apigen/apigen.go

    	// For example: type is for Any is 'type.googlepis.com/istio.networking.v1alpha3.EnvoyFilter
    	// We use: networking.istio.io/v1alpha3/EnvoyFilter
    	kind := strings.SplitN(w.TypeUrl, "/", 3)
    	if len(kind) != 3 {
    		log.Warnf("ADS: Unknown watched resources %s", w.TypeUrl)
    		// Still return an empty response - to not break waiting code. It is fine to not know about some resource.
    		return resp, model.DefaultXdsLogDetails, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. pilot/pkg/xds/adstest.go

    		}
    	})
    }
    
    func (a *AdsTest) adsReceiveChannel() {
    	context.AfterFunc(a.context, a.Cleanup)
    	for {
    		resp, err := a.client.Recv()
    		if err != nil {
    			if isUnexpectedError(err) {
    				log.Warnf("ads received error: %v", err)
    			}
    			select {
    			case a.error <- err:
    			case <-a.context.Done():
    			}
    			return
    		}
    		select {
    		case a.responses <- resp:
    		case <-a.context.Done():
    			return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. pkg/adsc/adsc.go

    		grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(defaultClientMaxReceiveMessageSize)),
    	}
    }
    
    // ADSC implements a basic client for ADS, for use in stress tests and tools
    // or libraries that need to connect to Istio pilot or other ADS servers.
    type ADSC struct {
    	// Stream is the GRPC connection stream, allowing direct GRPC send operations.
    	// Set after Dial is called.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  9. pilot/pkg/xds/deltaadstest.go

    		}
    	})
    }
    
    func (a *DeltaAdsTest) adsReceiveChannel() {
    	context.AfterFunc(a.context, a.Cleanup)
    	for {
    		resp, err := a.client.Recv()
    		if err != nil {
    			if isUnexpectedError(err) {
    				log.Warnf("ads received error: %v", err)
    			}
    			select {
    			case a.error <- err:
    			case <-a.context.Done():
    			}
    			return
    		}
    		select {
    		case a.responses <- resp:
    		case <-a.context.Done():
    			return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. 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)
Back to top