Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for preprocessUri (0.38 sec)

  1. 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;
            };
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeDirectives.java

     */
    package org.gradle.language.nativeplatform.internal;
    
    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    
    /**
     * An immutable snapshot of the preprocessor directives from a source or header file.
     */
    public interface IncludeDirectives {
        List<Include> getQuotedIncludes();
        List<Include> getSystemIncludes();
        List<Include> getMacroIncludes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. 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.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:46:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/Expression.java

     * limitations under the License.
     */
    
    package org.gradle.language.nativeplatform.internal;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * A preprocessor expression whose value may be resolved to an include file path.
     * All implementations should be immutable.
     */
    public interface Expression {
        /**
         * Returns the expression formatted as text in a source file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/configurators/StandaloneModeBinaryTestConfigurator.kt

    import org.jetbrains.kotlin.test.builders.TestConfigurationBuilder
    import org.jetbrains.kotlin.test.model.DependencyKind
    import org.jetbrains.kotlin.test.preprocessors.ExternalAnnotationsSourcePreprocessor
    import org.jetbrains.kotlin.test.services.TestModuleStructure
    import org.jetbrains.kotlin.test.services.TestServices
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/XRef.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.plugins.antlr.internal.antlr2;
    
    import antlr.preprocessor.Hierarchy;
    
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    //
    // Note that even though the implementations of the following two
    // macros are much alike, we cannot refactor them to use a common
    // helper macro, due to some peculiarity in how the preprocessor
    // works.  The AcceptsMacroThatExpandsToUnprotectedComma test in
    // gtest_unittest.cc will fail to compile if we do that.
    #define EXPECT_FATAL_FAILURE(statement, substr) \
      do { \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    //
    // Note that even though the implementations of the following two
    // macros are much alike, we cannot refactor them to use a common
    // helper macro, due to some peculiarity in how the preprocessor
    // works.  The AcceptsMacroThatExpandsToUnprotectedComma test in
    // gtest_unittest.cc will fail to compile if we do that.
    #define EXPECT_FATAL_FAILURE(statement, substr) \
      do { \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

     public:
      explicit Renderer(RendererContext context);
    
     protected:
      // Append a blank line.
      Renderer &BlankLine();
    
      // Append a line of source code, left-justified (not indented).
      // Use for preprocessors directives ("#include"), namespaces, etc.
      Renderer &CodeLine(const string &text);
      template <typename... Args>
      Renderer CodeLine(absl::string_view text, const Args &...args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

            and:
            succeeds "mainExecutable"
    
            and:
            skipped compileTask
        }
    
        @ToBeFixedForConfigurationCache
        def "source is not recompiled when preprocessor removed header is changed"() {
            given:
            def notIncluded = file("src/main/headers/notIncluded.h")
            notIncluded.text = """#pragma message("should not be used")"""
            sourceFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top