Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for protoimpl (0.19 sec)

  1. pkg/config/mesh/kubemesh/watcher_test.go

    					Should(Succeed())
    			}
    
    			retry.UntilOrFail(t, func() bool { return cmp.Equal(w.Mesh(), step.expect, protocmp.Transform()) })
    			retry.UntilOrFail(t, func() bool {
    				mu.Lock()
    				defer mu.Unlock()
    				return cmp.Equal(newM, step.expect, protocmp.Transform())
    			})
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. pkg/test/util/assert/assert.go

    package assert
    
    import (
    	"fmt"
    	"reflect"
    	"strings"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pkg/ptr"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var compareErrors = cmp.Comparer(func(x, y error) bool {
    	switch {
    	case x == nil && y == nil:
    		return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/analysis/analysis_test.go

    // limitations under the License.
    
    package analysis
    
    import (
    	"context"
    	"fmt"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/meta/v1alpha1"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. pilot/pkg/xds/deltatest.go

    package xds
    
    import (
    	"fmt"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var knownOptimizationGaps = sets.New(
    	"BlackHoleCluster",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/model/generator_test.go

    package model
    
    import (
    	"testing"
    
    	rbacpb "github.com/envoyproxy/go-control-plane/envoy/config/rbac/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    func TestRequestPrincipal(t *testing.T) {
    	cases := []struct {
    		in   string
    		want string
    	}{
    		{
    			in: "*",
    			want: `
            and_ids:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. pkg/config/mesh/mesh_test.go

    // limitations under the License.
    
    package mesh_test
    
    import (
    	"fmt"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/validation/agent"
    	"istio.io/istio/pkg/test/util/assert"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    			if diff := cmp.Diff(tt.want, tt.args.virtualHost, protocmp.Transform()); diff != "" {
    				t.Errorf("PatchHTTPRoute(): %s mismatch (-want +got):\n%s", tt.name, diff)
    			}
    			if diff := cmp.Diff(savedSharedVHost, tt.args.sharedRoutesVHost, protocmp.Transform()); diff != "" {
    				t.Errorf("PatchHTTPRoute(): %s affect other virtualhosts (-want +got):\n%s", tt.name, diff)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. tests/fuzz/crd_roundtrip_fuzzer.go

    	"github.com/davecgh/go-spew/spew"
    	legacyproto "github.com/golang/protobuf/proto" // nolint: staticcheck
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"google.golang.org/protobuf/testing/protocmp"
    	apimeta "k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer/json"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tracing_test.go

    	tracing "github.com/envoyproxy/go-control-plane/envoy/type/tracing/v3"
    	xdstype "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	tpb "istio.io/api/telemetry/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/typed_xds_cache.go

    		go func() {
    			if !cmp.Equal(existing, replacement, protocmp.Transform()) {
    				warning := fmt.Errorf("assertion failed at %v, cache entry changed but not cleared for key %v: %v\n%v\n%v",
    					t0, key, cmp.Diff(existing, replacement, protocmp.Transform()), existing, replacement)
    				panic(warning)
    			}
    		}()
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top