Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for tagsList (0.14 sec)

  1. releasenotes/notes/azureTags.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
    - 31176
    releaseNotes:
    - |
      **Fixed** issue with metadata handling for Azure platform. Support added for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 225 bytes
    - Viewed (0)
  2. pkg/bootstrap/platform/azure_test.go

    		`"vmId": "13f56399-bd52-4150-9748-7190aae1ff21", "zone": "1"}}`
    	MockMetadataTagsList = `{"compute": {"location": "centralus", "name": "negasonic", ` +
    		`"tagsList": [{"name": "Department", "value":"IT"}, {"name": "Environment", "value": "Prod"}, {"name": "Role", "value": "WorkerRole; OtherWorker"}], ` +
    		`"vmId": "13f56399-bd52-4150-9748-7190aae1ff21", "zone": "1"}}`
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 03 22:26:47 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. pkg/bootstrap/platform/azure.go

    	if tl, ok := e.computeMetadata["tagsList"]; ok {
    		tlByte, err := json.Marshal(tl)
    		if err != nil {
    			return tags
    		}
    		var atl []azureTag
    		err = json.Unmarshal(tlByte, &atl)
    		if err != nil {
    			return tags
    		}
    		for _, tag := range atl {
    			tags[e.prefixName(tag.Name)] = tag.Value
    		}
    		return tags
    	}
    	// fall back to tags if tagsList is not available
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/opensearch/extension/analysis/PosConcatenationFilterFactory.java

                final Settings settings) {
            super(indexSettings, name, settings);
    
            final List<String> tagList = Analysis.parseWordList(environment, settings, "tags", s -> s);
            if (tagList != null) {
                posTags.addAll(tagList);
            }
        }
    
        @Override
        public TokenStream create(final TokenStream tokenStream) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

            List<SuggestItem> items = null;
            final List<String> tagList = new ArrayList<>();
            for (final String tagFieldName : tagFieldNames) {
                tagList.addAll(Arrays.asList(getFieldValues(document, tagFieldName)));
            }
            final String[] tags = tagList.toArray(new String[tagList.size()]);
            final String[] roles = getFieldValues(document, roleFieldName);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

                final List<String> tagList = new ArrayList<>();
                final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
                if (StringUtil.isNotBlank(key)) {
                    tagList.add(key);
                }
                runtime.registerData("popularWords", popularWordHelper.getWordList(SearchRequestType.SEARCH, null,
                        tagList.toArray(new String[tagList.size()]), null, null, null));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/nodes.go

    		Elem Expr
    		expr
    	}
    
    	// ...Elem
    	DotsType struct {
    		Elem Expr
    		expr
    	}
    
    	// struct { FieldList[0] TagList[0]; FieldList[1] TagList[1]; ... }
    	StructType struct {
    		FieldList []*Field
    		TagList   []*BasicLit // i >= len(TagList) || TagList[i] == nil means no tag for field i
    		expr
    	}
    
    	// Name Type
    	//      Type
    	Field struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/call.go

    // xlistList elements do not exist (targsList and xlistList are nil) or the elements are nil.
    // For each partially instantiated generic function operand, the corresponding targsList and
    // xlistList elements are the operand's partial type arguments and type expression lists.
    func (check *Checker) genericExprList(elist []syntax.Expr) (resList []*operand, targsList [][]Type, xlistList [][]syntax.Expr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            final List<String> tagList = new ArrayList<>(item1.getTags().length + item2.getTags().length);
            Collections.addAll(tagList, item1.getTags());
            for (final String tag : item2.getTags()) {
                if (!tagList.contains(tag)) {
                    tagList.add(tag);
                }
            }
            mergedItem.tags = tagList.toArray(new String[tagList.size()]);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. src/go/types/call.go

    // xlistList elements do not exist (targsList and xlistList are nil) or the elements are nil.
    // For each partially instantiated generic function operand, the corresponding targsList and
    // xlistList elements are the operand's partial type arguments and type expression lists.
    func (check *Checker) genericExprList(elist []ast.Expr) (resList []*operand, targsList [][]Type, xlistList [][]ast.Expr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top