Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for envoytype (0.29 sec)

  1. pilot/pkg/networking/core/listener_inbound.go

    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	tcp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/tcp_proxy/v3"
    	envoytype "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	extensions "istio.io/api/extensions/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializer.java

            stack.push();
            Deque<String> pathTracker = new ArrayDeque<>();
            while (true) {
                EntryType type = readEntryType(decoder);
                if (type == EntryType.END) {
                    break;
                }
                if (type != EntryType.DIR_CLOSE) {
                    String path = decoder.readString();
                    String internedPath = stringInterner.intern(path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:45:55 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/v3/model.go

    // GetResourceType returns resource form of an abbreviated form
    func GetResourceType(shortType string) string {
    	return model.GetResourceType(shortType)
    }
    
    // IsEnvoyType checks whether the typeURL is a valid Envoy type.
    func IsEnvoyType(typeURL string) bool {
    	return model.IsEnvoyType(typeURL)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/extauthz.go

    	}
    	return &envoytypev3.HttpStatus{Code: envoytypev3.StatusCode(code)}, nil
    }
    
    func generateHTTPConfig(hostname, cluster string, status *envoytypev3.HttpStatus,
    	config *meshconfig.MeshConfig_ExtensionProvider_EnvoyExternalAuthorizationHttpProvider,
    ) *builtExtAuthz {
    	service := &extauthzhttp.HttpService{
    		PathPrefix: config.PathPrefix,
    		ServerUri: &core.HttpUri{
    			// Timeout is required.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    				t.Run(fmt.Sprintf("version=%s,envType=%s", tv.version.String(), tv.envType), func(t *testing.T) {
    
    					envSet := MustBaseEnvSet(tv.version, true)
    					if tc.opts != nil {
    						var err error
    						envSet, err = envSet.Extend(tc.opts...)
    						if err != nil {
    							t.Errorf("unexpected error extending environment %v", err)
    						}
    					}
    
    					envType := NewExpressions
    					if len(tv.envType) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pkg/model/xds.go

    		return ExtensionConfigurationType
    	case "WDS":
    		return AddressType
    	case "WADS":
    		return WorkloadAuthorizationType
    	default:
    		return shortType
    	}
    }
    
    // IsEnvoyType checks whether the typeURL is a valid Envoy type.
    func IsEnvoyType(typeURL string) bool {
    	return strings.HasPrefix(typeURL, envoyTypePrefix)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    		EnvOptions:        []celgo.EnvOption{library.Test()},
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	compiler := NewCompiler(extended)
    
    	for _, tc := range cases {
    		envType := tc.envType
    		if envType == "" {
    			envType = environment.NewExpressions
    		}
    		t.Run(tc.name, func(t *testing.T) {
    			for _, expr := range tc.expressions {
    				t.Run(expr, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectAccessorsClassPathTest.kt

            }
            withClassLoaderFor(defaultPackageTypes) {
                val entryType = schemaTypeFor("Entry")
                val schema =
                    TypedProjectSchema(
                        extensions = listOf(
                            ProjectSchemaEntry(schemaTypeFor("ExtensionReceiver"), "extension", entryType)
                        ),
                        conventions = listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/extensionprovider.go

    	code, err := strconv.ParseInt(status, 10, 32)
    	if err != nil {
    		return fmt.Errorf("invalid statusOnError value %s: %v", status, err)
    	}
    	if _, found := envoytypev3.StatusCode_name[int32(code)]; !found {
    		return fmt.Errorf("unsupported statusOnError value %s, supported values: %v", status, envoytypev3.StatusCode_name)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/cmd/internal/archive/archive.go

    }
    
    func (a *Archive) File() *os.File { return a.f }
    
    type Entry struct {
    	Name  string
    	Type  EntryType
    	Mtime int64
    	Uid   int
    	Gid   int
    	Mode  os.FileMode
    	Data
    	Obj *GoObj // nil if this entry is not a Go object file
    }
    
    type EntryType int
    
    const (
    	EntryPkgDef EntryType = iota
    	EntryGoObj
    	EntryNativeObj
    	EntrySentinelNonObj
    )
    
    func (e *Entry) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top