Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 86 for unrecognized (0.6 seconds)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                        mavenConfig = cliManager.parse(args);
                        List<?> unrecognized = mavenConfig.getArgList();
                        if (!unrecognized.isEmpty()) {
                            // This file can only contain options, not args (goals or phases)
                            throw new ParseException("Unrecognized maven.config file entries: " + unrecognized);
                        }
                    }
                }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 78.1K bytes
    - Click Count (0)
  2. doc/godebug.md

    For example, if a Go program is running in an environment that contains
    
    	GODEBUG=http2client=0,http2server=0
    
    then that Go program will disable the use of HTTP/2 by default in both
    the HTTP client and the HTTP server.
    Unrecognized settings in the `GODEBUG` environment variable are ignored.
    It is also possible to set the default `GODEBUG` for a given program
    (discussed below).
    
    When preparing any change that is permitted by Go 1 compatibility
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Dec 03 00:18:09 GMT 2025
    - 24.7K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb1/util/transport/Transport.java

         * @throws IOException if an I/O error occurs
         */
        protected abstract void doRecv(Response response) throws IOException;
    
        /**
         * Skips an unexpected or unrecognized message.
         *
         * @throws IOException if an I/O error occurs
         */
        protected abstract void doSkip() throws IOException;
    
        /**
         * Sends a request and waits for the corresponding response.
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  4. internal/event/target/postgresql.go

    		return err
    	}
    
    	if p.Format != "" {
    		f := strings.ToLower(p.Format)
    		if f != event.NamespaceFormat && f != event.AccessFormat {
    			return fmt.Errorf("unrecognized format value")
    		}
    	}
    
    	if p.ConnectionString != "" {
    		// No pq API doesn't help to validate connection string
    		// prior connection, so no validation for now.
    	} else {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Mar 30 00:56:02 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  5. guava/src/com/google/common/io/BaseEncoding.java

            throw new DecodingException("Unrecognized character: 0x" + Integer.toHexString(ch));
          }
          int result = decodabet[ch];
          if (result == -1) {
            if (ch <= 0x20 || ch == Ascii.MAX) {
              throw new DecodingException("Unrecognized character: 0x" + Integer.toHexString(ch));
            } else {
              throw new DecodingException("Unrecognized character: " + ch);
            }
          }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Oct 06 14:51:47 GMT 2025
    - 41.7K bytes
    - Click Count (0)
  6. src/main/resources/fess_message.properties

    constraints.TypeFloat.message = {item} must be a number.
    constraints.TypeDouble.message = {item} must be a number.
    constraints.TypeAny.message = {item} cannot be converted to {propertyType}.
    constraints.UriType.message = {item} has an unrecognized URI.
    constraints.CronExpression.message = {item} is not a valid CRON expression.
    
    # ----------------------------------------------------------
    # Application Exception
    # ---------------------
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Jul 05 02:36:47 GMT 2025
    - 11.6K bytes
    - Click Count (0)
  7. src/main/resources/fess_message_en.properties

    constraints.TypeFloat.message = {item} must be a number.
    constraints.TypeDouble.message = {item} must be a number.
    constraints.TypeAny.message = {item} cannot be converted to {propertyType}.
    constraints.UriType.message = {item} has an unrecognized URI.
    constraints.CronExpression.message = {item} is not a valid CRON expression.
    
    # ----------------------------------------------------------
    # Application Exception
    # ---------------------
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Jul 05 02:36:47 GMT 2025
    - 11.5K bytes
    - Click Count (0)
  8. internal/event/target/mysql.go

    func (m MySQLArgs) Validate() error {
    	if !m.Enable {
    		return nil
    	}
    
    	if m.Format != "" {
    		f := strings.ToLower(m.Format)
    		if f != event.NamespaceFormat && f != event.AccessFormat {
    			return fmt.Errorf("unrecognized format")
    		}
    	}
    
    	if m.Table == "" {
    		return fmt.Errorf("table unspecified")
    	}
    
    	if m.DSN != "" {
    		if _, err := mysql.ParseDSN(m.DSN); err != nil {
    			return err
    		}
    	} else {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Mar 30 00:56:02 GMT 2025
    - 11.6K bytes
    - Click Count (0)
  9. guava/src/com/google/common/base/Functions.java

       * can use {@link com.google.common.collect.Maps#asConverter Maps.asConverter} instead to get a
       * function that also supports reverse conversion.
       *
       * <p>If you are okay with {@code null} being returned for an unrecognized key (instead of an
       * exception being thrown), you can use the method reference {@code map::get} instead. Note that
       * it is not serializable unless you explicitly make it {@link Serializable}, typically by writing
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Aug 06 17:32:30 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  10. internal/event/target/elasticsearch.go

    	if a.URL.IsEmpty() {
    		return errors.New("empty URL")
    	}
    	if a.Format != "" {
    		f := strings.ToLower(a.Format)
    		if f != event.NamespaceFormat && f != event.AccessFormat {
    			return errors.New("format value unrecognized")
    		}
    	}
    	if a.Index == "" {
    		return errors.New("empty index value")
    	}
    
    	if (a.Username == "" && a.Password != "") || (a.Username != "" && a.Password == "") {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 15K bytes
    - Click Count (0)
Back to Top