Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for unknownKey (0.18 sec)

  1. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                    if (StringUtil.isNotBlank(line)) {
                        final int pos = line.indexOf('=');
                        if (pos == 0) {
                            paramMap.put("unknown." + (unknownKey + 1), line.substring(pos + 1).trim());
                            unknownKey++;
                        } else if (pos > 0) {
                            final String key = line.substring(0, pos).trim();
                            if (pos < line.length()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/ExcludeRuleNotationConverterTest.groovy

            parser.parseNotation(WrapUtil.toMap(ExcludeRule.GROUP_KEY, "aGroup"));
            parser.parseNotation(WrapUtil.toMap(ExcludeRule.MODULE_KEY, "aModule"));
    
            when:
            parser.parseNotation(WrapUtil.toMap("unknownKey", "someValue"))
    
            then:
            thrown(InvalidUserDataException)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    == Invalid TOML definition
    
    This error indicates that you have a syntax or grammar error in your TOML version catalog file.
    
    This can happen if you use wrong keys, for example:
    
    ```toml
    some-alias = { unknownKey = "foo" }
    ```
    
    or that you forgot about some elements:
    
    ```toml
    # missing the "group"
    some-alias = { name="my-lib", version="1.0" }
    ```
    
    [[unsupported_format_version]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/evex.go

    			}
    		case "BCST":
    			hasBcst = true
    		case "SAE", "RN_SAE", "RZ_SAE", "RD_SAE", "RU_SAE":
    			hasRoundSae = true
    		default:
    			if !unknownSet[suffix] {
    				msg = append(msg, fmt.Sprintf("unknown suffix %q", suffix))
    			}
    			unknownSet[suffix] = true
    		}
    
    		if suffixSet[suffix] {
    			msg = append(msg, fmt.Sprintf("duplicate suffix %q", suffix))
    		}
    		suffixSet[suffix] = true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top