Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 131 for Eads (0.03 sec)

  1. src/go/build/build_test.go

    func TestIssue56509(t *testing.T) {
    	// The directory testdata/bads contains a .s file that has an unparsable
    	// comment. (go/build parses initial comments in non-go files looking for
    	// //go:build or //+go build comments).
    	p, err := ImportDir("testdata/bads", 0)
    	if err == nil {
    		t.Fatalf("could not import testdata/bads: %v", err)
    	}
    
    	if len(p.InvalidGoFiles) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

        TFTensorType:$fallback_tensor
      );
    
      let results = (outs
        TensorType:$dht
      );
    
      let assemblyFormat = "operands attr-dict `:` type($dht)";
    }
    
    // TODO(rohitju): This is Ads specific, need to find an appropriate home for it.
    def SetSparseMatrixResourceOp : FallbackSync_Op<"set_sparse_matrix_resource", [CoreRT_TypedAttributeTrait]> {
      let summary = "Set a Sparse matrix in resource array";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top