Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for envoytype (0.92 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/apis/resource/structured/namedresources/validation/validation.go

    	var allErrs field.ErrorList
    	if selector == "" {
    		allErrs = append(allErrs, field.Required(fldPath, ""))
    	} else {
    		envType := environment.NewExpressions
    		if opts.StoredExpressions {
    			envType = environment.StoredExpressions
    		}
    		result := namedresourcescel.Compiler.CompileCELExpression(selector, envType)
    		if result.Error != nil {
    			allErrs = append(allErrs, convertCELErrorToValidationError(fldPath, selector, result.Error))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    	return result
    }
    
    func (c *CompositedCompiler) Compile(expressions []ExpressionAccessor, optionalDecls OptionalVariableDeclarations, envType environment.Type) Filter {
    	filter := c.FilterCompiler.Compile(expressions, optionalDecls, envType)
    	return &CompositedFilter{
    		Filter:         filter,
    		compositionEnv: c.CompositionEnv,
    	}
    }
    
    type CompositionEnv struct {
    	*environment.EnvSet
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    type FilterCompiler interface {
    	// Compile is used for the cel expression compilation
    	Compile(expressions []ExpressionAccessor, optionalDecls OptionalVariableDeclarations, envType environment.Type) Filter
    }
    
    // OptionalVariableBindings provides expression bindings for optional CEL variables.
    type OptionalVariableBindings struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top