Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,421 for MATCH (0.04 sec)

  1. src/cmd/vendor/golang.org/x/text/language/match.go

    			continue
    		}
    		if tag, index, conf := m.Match(desired...); conf != No {
    			return tag, index
    		}
    	}
    	tag, index, _ = m.Match()
    	return
    }
    
    // Matcher is the interface that wraps the Match method.
    //
    // Match returns the best match for any of the given tags, along with
    // a unique index associated with the returned tag and a confidence
    // score.
    type Matcher interface {
    	Match(t ...Tag) (tag Tag, index int, c Confidence)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/_aws/fess/doc.json

              "match": "*_bn",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_ca": {
              "match": "*_ca",
              "mapping": {
                "type": "text",
                "analyzer": "catalan_analyzer"
              }
            }
          },
          {
            "lang_ca": {
              "match": "*_ckb-iq",
              "mapping": {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/doc.json

              "match": "*_bn",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_ca": {
              "match": "*_ca",
              "mapping": {
                "type": "text",
                "analyzer": "catalan_analyzer"
              }
            }
          },
          {
            "lang_ca": {
              "match": "*_ckb-iq",
              "mapping": {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. build/dependencies.yaml

        - path: cluster/gce/manifests/etcd.manifest
          match: etcd_docker_tag|etcd_version
        - path: cluster/gce/upgrade-aliases.sh
          match: ETCD_IMAGE|ETCD_VERSION
        - path: cmd/kubeadm/app/constants/constants.go
          match: DefaultEtcdVersion =
        - path: hack/lib/etcd.sh
          match: ETCD_VERSION=
        - path: staging/src/k8s.io/sample-apiserver/artifacts/example/deployment.yaml
          match: gcr.io/etcd-development/etcd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/regexp/regexp.go

    		}
    		template = rest
    		if num >= 0 {
    			if 2*num+1 < len(match) && match[2*num] >= 0 {
    				if bsrc != nil {
    					dst = append(dst, bsrc[match[2*num]:match[2*num+1]]...)
    				} else {
    					dst = append(dst, src[match[2*num]:match[2*num+1]]...)
    				}
    			}
    		} else {
    			for i, namei := range re.subexpNames {
    				if name == namei && 2*i+1 < len(match) && match[2*i] >= 0 {
    					if bsrc != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. pkg/config/validation/envoyfilter/envoyfilter_test.go

    					},
    				},
    			},
    		}, error: "Envoy filter: filter match has no name to match on"},
    		{name: "listener with sub filter match and invalid applyTo", in: &networking.EnvoyFilter{
    			ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    				{
    					ApplyTo: networking.EnvoyFilter_NETWORK_FILTER,
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            schema.attribute(other)
    
            def candidate1 = attributes(usage: "match")
            def candidate2 = attributes(usage: "no match")
            def candidate3 = attributes(other: "match")
            def candidate4 = attributes()
            def candidate5 = attributes(usage: "match")
    
            def requested = attributes(usage: "match", other: "match")
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/_cloud/fess/doc.json

              "match": "*_bn",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_ca": {
              "match": "*_ca",
              "mapping": {
                "type": "text",
                "analyzer": "catalan_analyzer"
              }
            }
          },
          {
            "lang_ca": {
              "match": "*_ckb-iq",
              "mapping": {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteARM64latelower.go

    	v_0 := v.Args[0]
    	// match: (MOVBUreg x:(Equal _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpARM64Equal {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(NotEqual _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpARM64NotEqual {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(LessThan _))
    	// result: x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. pkg/config/validation/virtualservice_test.go

    		},
    		{
    			name: "null header match", route: &networking.HTTPRoute{
    				Delegate: &networking.Delegate{
    					Name:      "test",
    					Namespace: "test",
    				},
    				Match: []*networking.HTTPMatchRequest{{
    					Headers: map[string]*networking.StringMatch{
    						"header": nil,
    					},
    				}},
    			}, valid: false,
    		},
    		{
    			name: "prefix header match", route: &networking.HTTPRoute{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top