Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 679 for fieldsV1 (0.12 sec)

  1. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            final Object fieldsObj = existingSource.get(FieldNames.FIELDS);
            if (fieldsObj instanceof List) {
                @SuppressWarnings("unchecked")
                final List<String> existingValues = (List<String>) fieldsObj;
                concatValues(existingValues, fields);
                map.put(FieldNames.FIELDS, existingValues);
            } else {
                map.put(FieldNames.FIELDS, fields);
            }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                    if (isExcludeSearchword(words[i], fields != null && fields.length > 0 ? fields[0] : "", langs, analyzer)) {
                        continue;
                    }
    
                    final String word = normalizer.normalize(words[i], fields != null && fields.length > 0 ? fields[0] : "", langs);
                    final List<String> l = readingConverter.convert(word, fields != null && fields.length > 0 ? fields[0] : "", langs);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. scan.go

    						fields[idx] = field
    						if count, ok := matchedFieldCount[column]; ok {
    							// handle duplicate fields
    							for _, selectField := range sch.Fields {
    								if selectField.DBName == column && selectField.Readable {
    									if count == 0 {
    										matchedFieldCount[column]++
    										fields[idx] = selectField
    										break
    									}
    									count--
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pilot/pkg/model/context_test.go

    }
    
    func TestProxyVersion_Compare(t *testing.T) {
    	type fields struct {
    		Major int
    		Minor int
    		Patch int
    	}
    	type args struct {
    		inv *model.IstioVersion
    	}
    	tests := []struct {
    		name   string
    		fields fields
    		args   args
    		want   int
    	}{
    		{
    			name:   "greater major",
    			fields: fields{Major: 2, Minor: 1, Patch: 1},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. pkg/registry/core/service/strategy.go

    	return true
    }
    
    // GetResetFields returns the set of fields that get reset by the strategy
    // and should not be modified by the user.
    func (svcStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"v1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. api/maven-api-settings/src/main/mdo/settings.mdo

              </description>
            </field>
          </fields>
        </class>
        <!-- /BuildProfile support -->
        <class locationTracker="locations">
          <name>InputLocation</name>
          <version>2.0.0+</version>
          <fields>
            <!-- line, column and source fields are auto-generated by Modello -->
          </fields>
          <codeSegments>
            <codeSegment>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/util/util_test.go

    					IstioMetadataKey: {
    						Fields: map[string]*structpb.Value{
    							"other-config": {
    								Kind: &structpb.Value_StringValue{
    									StringValue: "other-config",
    								},
    							},
    						},
    					},
    				},
    			},
    			&core.Metadata{
    				FilterMetadata: map[string]*structpb.Struct{
    					IstioMetadataKey: {
    						Fields: map[string]*structpb.Value{
    							"other-config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/size.go

    	if t.Noalg() {
    		t.setAlg(ANOALG)
    	}
    	if len(fields) == 1 && !fields[0].Sym.IsBlank() {
    		// One-field struct is same as that one field alone.
    		t.setAlg(fields[0].Type.alg)
    	} else {
    		for i, f := range fields {
    			a := f.Type.alg
    			switch a {
    			case ANOEQ, ANOALG:
    			case AMEM:
    				// Blank fields and padded fields need a special compare.
    				if f.Sym.IsBlank() || IsPaddedField(t, i) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    							Type: "object",
    							Properties: map[string]apiextensions.JSONSchemaProps{
    								"field1": {
    									Type: "string",
    								},
    								"field2": {
    									Type: "string",
    								},
    							},
    						},
    					},
    					SelectableFields: []apiextensions.SelectableField{
    						{
    							JSONPath: ".field1",
    						},
    						{
    							JSONPath: ".field2",
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_builder_test.go

    	}
    	tests := []struct {
    		name   string
    		proxy  *model.Proxy
    		fields fields
    		want   fields
    	}{
    		{
    			name:  "patch add inbound and outbound listener",
    			proxy: sidecarProxy,
    			fields: fields{
    				OutboundListeners: []*listener.Listener{
    					{
    						Name: "outbound-listener",
    					},
    				},
    			},
    			want: fields{
    				InboundListeners: []*listener.Listener{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top