Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for LabelType (0.07 sec)

  1. cni/pkg/repair/repaircontroller.go

    	return nil
    }
    
    func (c *Controller) labelBrokenPod(pod *corev1.Pod) error {
    	// Added for safety, to make sure no healthy pods get labeled.
    	m := podsRepaired.With(typeLabel.Value(labelType))
    	repairLog.Infof("Pod detected as broken, adding label: %s/%s", pod.Namespace, pod.Name)
    
    	labels := pod.GetLabels()
    	if _, ok := labels[c.cfg.LabelKey]; ok {
    		m.With(resultLabel.Value(resultSkip)).Increment()
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            putResultDataBody(dataMap, Constants.INDEXING_TARGET, indexingTarget);
            //  boost
            putResultDataBody(dataMap, fessConfig.getIndexFieldBoost(), crawlingConfig.getDocumentBoost());
            // label: labelType
            final LabelTypeHelper labelTypeHelper = ComponentUtil.getLabelTypeHelper();
            putResultDataBody(dataMap, fessConfig.getIndexFieldLabel(), labelTypeHelper.getMatchedLabelValueSet(url));
            // role: roleType
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. fileauth */
        String ONLINE_HELP_NAME_FILEAUTH = "online.help.name.fileauth";
    
        /** The key of the configuration. e.g. labeltype */
        String ONLINE_HELP_NAME_LABELTYPE = "online.help.name.labeltype";
    
        /** The key of the configuration. e.g. duplicatehost */
        String ONLINE_HELP_NAME_DUPLICATEHOST = "online.help.name.duplicatehost";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            putResultDataBody(dataMap, Constants.INDEXING_TARGET, indexingTarget);
            //  boost
            putResultDataBody(dataMap, fessConfig.getIndexFieldBoost(), crawlingConfig.getDocumentBoost());
            // label: labelType
            putResultDataBody(dataMap, fessConfig.getIndexFieldLabel(), labelTypeHelper.getMatchedLabelValueSet(url));
            // role: roleType
            final List<String> roleTypeList = new ArrayList<>();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top