Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 6,696 for includes_ (0.2 sec)

  1. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

     * ## Reactive Authentication
     *
     * Implementations authenticate by returning a follow-up request that includes an authorization
     * header, or they may decline the challenge by returning null. In this case the unauthenticated
     * response will be returned to the caller that triggered it.
     *
     * Implementations should check if the initial request already included an attempt to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java

         * @param includes include patterns.
         * @param excludes exclude patterns.
         */
        void addResource(MavenProject project, String resourceDirectory, List<String> includes, List<String> excludes);
    
        /**
         * Add a test resource directory to the project.
         * @param project project reference.
         * @param resourceDirectory directory.
         * @param includes include patterns.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/IncludedBuildValidationIntegrationTest.groovy

            given:
            def buildC = singleProjectBuild("buildC")
            includeBuild(buildB)
            includeBuildAs(buildC, 'buildB')
    
            when:
            fails(buildA, "help")
    
            then:
            failure.assertHasDescription("Included build $buildC has build path :buildB which is the same as included build $buildB")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

            file('third/settings.gradle') << "include('t1')"
    
            when:
            run ":projects"
    
            then:
            outputContains """
    Root project 'my-root-project'
    No sub-projects
    
    Included builds:
    
    +--- Included build ':another'
    \\--- Included build ':third'"""
        }
    
        def "included builds are only shown in the context of the root project"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pom.xml

    						<execution>
    							<phase>package</phase>
    							<goals>
    								<goal>shade</goal>
    							</goals>
    							<configuration>
    								<artifactSet>
    									<includes>
    										<include>org.dbflute:dbflute-runtime</include>
    									</includes>
    								</artifactSet>
    								<relocations>
    									<relocation>
    										<pattern>org.dbflute</pattern>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #         ; !NotEqual = map:{ $$ALL$$ = list:{ $$VersionNo$$ } }
    #     }
    #     # This means that Date does not includes NotEqual at all tables.  
    #     ; Date = map:{
    #         ; NotEqual = map:{}
    #     }
    # }
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        ; String = map:{
            # [Include]
            # String columns may not be needed
            # to be set these condition-keys basically.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    #include <cstddef>
    #include <cstdint>
    #include <memory>
    #include <utility>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/STLFunctionalExtras.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallPtrSet.h"
    #include "llvm/ADT/SmallSet.h"
    #include "llvm/ADT/SmallVector.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/fileTrees/kotlin/build.gradle.kts

    var tree: ConfigurableFileTree = fileTree("src/main")
    
    // Add include and exclude patterns to the tree
    tree.include("**/*.java")
    tree.exclude("**/Abstract*")
    
    // Create a tree using closure
    tree = fileTree("src") {
        include("**/*.java")
    }
    
    // Create a tree using a map
    tree = fileTree("dir" to "src", "include" to "**/*.java")
    tree = fileTree("dir" to "src", "includes" to listOf("**/*.java", "**/*.xml"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/pre-compiled-headers/groovy/build.gradle[tag=libraries]
    ----
    
    A precompiled header must be included in the same way for all files that use it. Usually, this means the header file should exist in the source set "headers" directory or in a directory included on the compiler include path.
    
    [[native_binaries:variants]]
    == Native Binary Variants
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildCommandLineArgsIntegrationTest.groovy

        }
    
        def "can include same build multiple times using --include-build and settings.gradle"() {
            given:
            dependency 'org.test:buildB:1.0'
    
            // Include 'buildB' twice via settings.gradle
            buildA.settingsFile << """
    includeBuild '${buildB.toURI()}'
    includeBuild '${buildB.toURI()}'
    """
            // Include 'buildB' twice via command-line arg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 09 12:02:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top