Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for preprocessor (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationValuePreprocessor.java

         * requirement) for the preprocessor to resolve the value to a compatible value or a (string) value than can be
         * unmarshalled into that type. The preprocessor is not required to perform any type conversion but should rather
         * filter out incompatible values from its result.
         *
         * @param value The configuration value to preprocess, must not be {@code null}.
         * @param type The target type of the value, may be {@code null}.
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java

            private final BeanConfigurationValuePreprocessor preprocessor;
    
            private final BeanConfigurationPathTranslator translator;
    
            BeanExpressionEvaluator(BeanConfigurationRequest request) {
                preprocessor = request.getValuePreprocessor();
                translator = request.getPathTranslator();
            }
    
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationRequest.java

        /**
         * Gets the optional preprocessor for configuration values.
         *
         * @return The preprocessor for configuration values or {@code null} if none.
         */
        BeanConfigurationValuePreprocessor getValuePreprocessor();
    
        /**
         * Sets the optional preprocessor for configuration values.
         *
         * @param valuePreprocessor The preprocessor for configuration values, may be {@code null} if unneeded.
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorTest.java

        void testPreAndPostProcessing() throws BeanConfigurationException {
            SomeBean bean = new SomeBean();
    
            Xpp3Dom config = toConfig("<file>${test}</file>");
    
            BeanConfigurationValuePreprocessor preprocessor = (value, type) -> {
                if (value != null && value.startsWith("${") && value.endsWith("}")) {
                    return value.substring(2, value.length() - 1);
                }
                return value;
            };
    
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorPathTest.java

        void testPreAndPostProcessing() throws BeanConfigurationException {
            SomeBean bean = new SomeBean();
    
            Xpp3Dom config = toConfig("<file>${test}</file>");
    
            BeanConfigurationValuePreprocessor preprocessor = (value, type) -> {
                if (value != null && value.startsWith("${") && value.endsWith("}")) {
                    return value.substring(2, value.length() - 1);
                }
                return value;
            };
    
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/asm/doc.go

    	-v
    		Print debug output.
    
    Input language:
    
    The assembler uses mostly the same syntax for all architectures,
    the main variation having to do with addressing modes. Input is
    run through a simplified C preprocessor that implements #include,
    #define, #ifdef/endif, but not #if or ##.
    
    For more information, see https://golang.org/doc/asm.
    */
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Tue Aug 22 20:46:45 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/lex/input.go

    				return tok
    			}
    		}
    	}
    	in.Error("recursive macro invocation")
    	return 0
    }
    
    func (in *Input) Text() string {
    	return in.text
    }
    
    // hash processes a # preprocessor directive. It reports whether it completes.
    func (in *Input) hash() bool {
    	// We have a '#'; it must be followed by a known word (define, include, etc.).
    	tok := in.Stack.Next()
    	if tok != scanner.Ident {
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  8. .bazelrc

    build:windows --copt=-DNOGDI
    build:windows --host_copt=-DNOGDI
    
    # MSVC (Windows): Standards-conformant preprocessor mode
    # See https://docs.microsoft.com/en-us/cpp/preprocessor/preprocessor-experimental-overview
    build:windows --copt=/Zc:preprocessor
    build:windows --host_copt=/Zc:preprocessor
    
    # Misc build options we need for windows.
    build:windows --linkopt=/DEBUG
    build:windows --host_linkopt=/DEBUG
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Wed Apr 10 21:49:38 GMT 2024
    - 52.8K bytes
    - Viewed (2)
  9. docs/en/docs/advanced/generate-clients.md

        ```
    
    With that, the operation IDs would be renamed from things like `items-get_items` to just `get_items`, that way the client generator can generate simpler method names.
    
    ### Generate a TypeScript Client with the Preprocessed OpenAPI
    
    Now as the end result is in a file `openapi.json`, you would modify the `package.json` to use that local file, for example:
    
    ```JSON  hl_lines="7"
    {
      "name": "frontend-app",
      "version": "1.0.0",
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Wed Apr 03 03:42:11 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  10. .idea/dictionaries/Nikolay_Krasko.xml

          <w>kdoc</w>
          <w>lateinit</w>
          <w>memoize</w>
          <w>memoized</w>
          <w>multiline</w>
          <w>navigatable</w>
          <w>preload</w>
          <w>preloader</w>
          <w>preloading</w>
          <w>preprocess</w>
          <w>proximities</w>
          <w>redeclarations</w>
          <w>reparsed</w>
          <w>smap</w>
          <w>subclassed</w>
          <w>subgraph</w>
          <w>substep</w>
          <w>tailrec</w>
          <w>typealias</w>
    XML
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Tue May 23 16:52:40 GMT 2023
    - 756 bytes
    - Viewed (0)
Back to top