Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for MatchType (0.32 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dependencies/MatchType.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks.diagnostics.internal.dependencies;
    
    public enum MatchType {
        /**
         * The attribute was not requested by the configuration.
         */
        NOT_REQUESTED,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 19:19:36 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dependencies/AttributeMatchDetails.java

    public class AttributeMatchDetails {
        private final MatchType matchType;
        @Nullable
        private final Attribute<?> requested;
        @Nullable
        private final Object requestedValue;
    
        public AttributeMatchDetails(MatchType matchType, @Nullable Attribute<?> requested, @Nullable Object requestedValue) {
            this.matchType = matchType;
            this.requested = requested;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 10 22:44:31 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/virtualservice_test.go

    							Uri: &networking.StringMatch{
    								MatchType: &networking.StringMatch_Prefix{Prefix: "/productpage/v2"},
    							},
    							Headers: map[string]*networking.StringMatch{
    								"version": {
    									MatchType: &networking.StringMatch_Exact{Exact: "v2"},
    								},
    							},
    							Port: 8080,
    						},
    						{
    							Uri: &networking.StringMatch{
    								MatchType: &networking.StringMatch_Prefix{Prefix: "/productpage"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. pkg/config/validation/virtualservice_test.go

    						MatchType: &networking.StringMatch_Regex{Regex: "test"},
    					},
    				},
    			}},
    		}, valid: true},
    		{name: "regex without headers match ?", route: &networking.HTTPRoute{
    			Redirect: &networking.HTTPRedirect{
    				Uri:       "/",
    				Authority: "foo.biz",
    			},
    			Match: []*networking.HTTPMatchRequest{{
    				WithoutHeaders: map[string]*networking.StringMatch{
    					"header": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion_test.go

    						{
    							Uri: &istio.StringMatch{
    								MatchType: &istio.StringMatch_Exact{
    									Exact: "/foo",
    								},
    							},
    						},
    					},
    				},
    			},
    			[]*istio.HTTPRoute{
    				{
    					Match: []*istio.HTTPMatchRequest{
    						{
    							Uri: &istio.StringMatch{
    								MatchType: &istio.StringMatch_Exact{
    									Exact: "/foo",
    								},
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route_internal_test.go

    			Major: 1,
    			Minor: 23,
    			Patch: 0,
    		},
    	}
    	corsPolicy := &networking.CorsPolicy{
    		AllowOrigins: []*networking.StringMatch{
    			{MatchType: &networking.StringMatch_Exact{Exact: "exact"}},
    			{MatchType: &networking.StringMatch_Prefix{Prefix: "prefix"}},
    			{MatchType: &networking.StringMatch_Regex{Regex: "regex"}},
    		},
    		UnmatchedPreflights: networking.CorsPolicy_IGNORE,
    	}
    	expectedCorsPolicy := &cors.CorsPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/compress/flate/token.go

    	return token(matchType + xlength<<lengthShift + xoffset)
    }
    
    // Returns the literal of a literal token.
    func (t token) literal() uint32 { return uint32(t - literalType) }
    
    // Returns the extra offset of a match token.
    func (t token) offset() uint32 { return uint32(t) & offsetMask }
    
    func (t token) length() uint32 { return uint32((t - matchType) >> lengthShift) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. cmd/postpolicyform.go

    					}
    				}
    				operator, matchType, value := toLowerString(condt[0]), toLowerString(condt[1]), toString(condt[2])
    				if !strings.HasPrefix(matchType, "$") {
    					return parsedPolicy, fmt.Errorf("Invalid according to Policy: Policy Condition failed: [%s, %s, %s]", operator, matchType, value)
    				}
    				parsedPolicy.Conditions.Policies = append(parsedPolicy.Conditions.Policies, struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                    return new AttributeMatchDetails(MatchType.INCOMPATIBLE, requested, requestedValue);
                }
            }
            return new AttributeMatchDetails(MatchType.NOT_REQUESTED, null, null);
        }
    
        private static final class RootDependencyRenderer implements NodeRenderer {
            private final DependencyInsightReportTask task;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    				Groups: []*security.Group{
    					{
    						Rules: []*security.Rules{
    							{
    								Matches: []*security.Match{
    									{
    										NotPrincipals: []*security.StringMatch{
    											{
    												MatchType: &security.StringMatch_Presence{},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		}
    	}, krt.WithName("DefaultPolicy"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top