Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 38 for parseArgs (0.07 seconds)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenParser.java

            }
            return LayeredMavenOptions.layerMavenOptions(result);
        }
    
        protected MavenOptions parseMavenCliOptions(List<String> args) {
            try {
                return parseArgs(Options.SOURCE_CLI, args);
            } catch (ParseException e) {
                throw new IllegalArgumentException("Failed to parse CLI arguments: " + e.getMessage(), e.getCause());
            }
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Oct 14 12:35:44 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  2. api/go1.26.txt

    pkg errors, func AsType[$0 error](error) ($0, bool) #51945
    pkg go/ast, func ParseDirective(token.Pos, string) (Directive, bool) #68021
    pkg go/ast, method (*Directive) End() token.Pos #68021
    pkg go/ast, method (*Directive) ParseArgs() ([]DirectiveArg, error) #68021
    pkg go/ast, method (*Directive) Pos() token.Pos #68021
    pkg go/ast, type BasicLit struct, ValueEnd token.Pos #76031
    pkg go/ast, type Directive struct #68021
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 19:57:52 GMT 2025
    - 11.5K bytes
    - Click Count (0)
  3. impl/maven-core/src/test/java/org/apache/maven/di/DiTest.java

                        new SisuDiBridgeModule(false));
            }
    
            @Test
            void testPlexus() throws Exception {
                List<ModelParser> parsers = container.lookupList(ModelParser.class);
                assertNotNull(parsers);
                assertEquals(1, parsers.size());
                Map<String, ModelParser> parsersMap = container.lookupMap(ModelParser.class);
                assertNotNull(parsersMap);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Feb 10 23:18:32 GMT 2025
    - 12.4K bytes
    - Click Count (0)
  4. internal/s3select/json/args.go

    	type subReaderArgs ReaderArgs
    	parsedArgs := subReaderArgs{}
    	if err := d.DecodeElement(&parsedArgs, &start); err != nil {
    		return err
    	}
    
    	parsedArgs.ContentType = strings.ToLower(parsedArgs.ContentType)
    	switch parsedArgs.ContentType {
    	case document, lines:
    	default:
    		return errInvalidJSONType(fmt.Errorf("invalid ContentType '%v'", parsedArgs.ContentType))
    	}
    
    	*args = ReaderArgs(parsedArgs)
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 2.7K bytes
    - Click Count (0)
  5. internal/s3select/parquet/args.go

    func (args *ReaderArgs) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
    	// Make subtype to avoid recursive UnmarshalXML().
    	type subReaderArgs ReaderArgs
    	parsedArgs := subReaderArgs{}
    	if err := d.DecodeElement(&parsedArgs, &start); err != nil {
    		return err
    	}
    
    	args.unmarshaled = true
    	return nil
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/core/xml/DocumentBuilderFactoryUtil.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.xml;
    
    import javax.xml.XMLConstants;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    
    import org.codelibs.core.exception.ParserConfigurationRuntimeException;
    import org.codelibs.core.log.Logger;
    
    /**
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  7. src/main/resources/tika.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <properties>
      <parsers>
        <parser class="org.apache.tika.parser.DefaultParser">
          <parser-exclude class="org.apache.tika.parser.ocr.TesseractOCRParser"/>
        </parser>
      </parsers>
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Mon Feb 24 12:59:41 GMT 2020
    - 241 bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/core/xml/SAXParserFactoryUtil.java

     */
    package org.codelibs.core.xml;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import javax.xml.XMLConstants;
    import javax.xml.parsers.ParserConfigurationException;
    import javax.xml.parsers.SAXParser;
    import javax.xml.parsers.SAXParserFactory;
    
    import org.codelibs.core.exception.ParserConfigurationRuntimeException;
    import org.codelibs.core.exception.SAXRuntimeException;
    import org.xml.sax.SAXException;
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

    import java.util.LinkedList;
    import java.util.List;
    import java.util.Map;
    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    
    import javax.xml.XMLConstants;
    import javax.xml.parsers.SAXParser;
    import javax.xml.parsers.SAXParserFactory;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.Constants;
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  10. ci/official/utilities/convert_msys_paths_to_win_paths.py

                          help='List of variables to ignore')
      parser.add_argument('--whitelist-prefix',
                          nargs='*',
                          help='Prefix for variables to include')
      args = parser.parse_args()
    
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Wed Aug 07 23:01:25 GMT 2024
    - 2.5K bytes
    - Click Count (0)
Back to Top