Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,435 for MATCH (0.04 sec)

  1. src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java

            map.put("data1", 20);
            assertTrue(docBoostMatcher.match(map));
    
            map.put("data1", 5);
            assertFalse(docBoostMatcher.match(map));
    
            map.remove("data1");
            assertFalse(docBoostMatcher.match(map));
    
            map.put("data2", 5);
            assertFalse(docBoostMatcher.match(map));
        }
    
        public void test_string() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_beta.yaml

      name: testing-service-01-test-02
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-02
      hosts:
      - 'web.testing-02.com' # Expected: no validation error since this host match the wildcard
      http:
      - match:
        - uri:
            prefix: /
        route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	}
    	// match: (MOVBUreg x:(FEQS _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpRISCV64FEQS {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(FNES _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpRISCV64FNES {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(FLED _ _))
    	// result: x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_with_ns_prefix.yaml

      namespace: default
    spec:
      gateways:
        - istio-system/testing-gateway-2
      hosts:
        - testing-01.com # Expected: no validation error because the gateway ns prefix is a wildcard match
      http:
        - match:
            - uri:
                prefix: /
          route:
            - destination:
                host: ratings
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: testing-gateway-3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/tls.go

    	if match == nil {
    		return true
    	}
    
    	gatewayMatch := len(match.Gateways) == 0
    	for _, gateway := range match.Gateways {
    		gatewayMatch = gatewayMatch || gateways.Contains(gateway)
    	}
    
    	labelMatch := labels.Instance(match.SourceLabels).SubsetOf(proxyLabels)
    
    	portMatch := match.Port == 0 || match.Port == uint32(port)
    
    	nsMatch := match.SourceNamespace == "" || match.SourceNamespace == proxyNamespace
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicLoad32 ptr mem)
    	// result: (LoweredAtomicLoad32 [1] ptr mem)
    	for {
    		ptr := v_0
    		mem := v_1
    		v.reset(OpPPC64LoweredAtomicLoad32)
    		v.AuxInt = int64ToAuxInt(1)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    }
    func rewriteValuePPC64_OpAtomicLoad64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicLoad64 ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    							},
    						},
    					},
    				},
    			},
    			want: false,
    		},
    		{
    			name: "full match",
    			args: args{
    				vh: &route.VirtualHost{
    					Name: "scooby",
    				},
    				cp: &model.EnvoyFilterConfigPatchWrapper{
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    						ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_RouteConfiguration{
    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. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    	}{
    		{
    			name:           "Direct match",
    			err:            &StatusError{ErrStatus: metav1.Status{Reason: metav1.StatusReasonUnauthorized}},
    			expectedReason: metav1.StatusReasonUnauthorized,
    		},
    		{
    			name:           "No match",
    			err:            errors.New("some other error"),
    			expectedReason: metav1.StatusReasonUnknown,
    		},
    		{
    			name:           "Nested match",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  9. tests/test_multipart_installation.py

        with pytest.raises(RuntimeError, match=multipart_incorrect_install_error):
            app = FastAPI()
    
            @app.post("/")
            async def root(f: bytes = File()):
                return f  # pragma: nocover
    
    
    def test_incorrect_multipart_installed_multi_form(monkeypatch):
        monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False)
        with pytest.raises(RuntimeError, match=multipart_incorrect_install_error):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/listener.go

    			})
    			for _, match := range matches {
    				if includeConfigType {
    					name := fmt.Sprintf("listener/%s", l.Name)
    					fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\n", name, strings.Join(addresses, ","), port, match.match, match.destination)
    				} else {
    					fmt.Fprintf(w, "%v\t%v\t%v\t%v\n", strings.Join(addresses, ","), port, match.match, match.destination)
    				}
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
Back to top