Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 230 for include2 (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[sec:kotlin-dsl_plugin]]
    == The Kotlin DSL Plugin
    
    The Kotlin DSL Plugin provides a convenient way to develop Kotlin-based projects that contribute build logic.
    That includes <<sharing_build_logic_between_subprojects.adoc#sec:using_buildsrc,buildSrc projects>>, <<composite_builds#composite_builds,included builds>> and <<custom_plugins#custom_plugins,Gradle plugins>>.
    
    The plugin achieves this by doing the following:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #include <ctype.h>   // for isspace, etc
    #include <stddef.h>  // for ptrdiff_t
    #include <stdlib.h>
    #include <stdio.h>
    #include <string.h>
    #ifndef _WIN32_WCE
    # include <sys/types.h>
    # include <sys/stat.h>
    #endif  // !_WIN32_WCE
    
    #if defined __APPLE__
    # include <AvailabilityMacros.h>
    # include <TargetConditionals.h>
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        def "chooses highest version that is included in all ranges, when dependencies are included at different transitivity levels"() {
            given:
            (1..10).each {
                mavenRepo.module("org", "leaf", "$it").publish()
            }
            // top level
            mavenRepo.module("org", "a", "1.0").dependsOn("org", "leaf", "[2,6]").publish()
    
            // b will include 'leaf' through a transitive dependency
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    #include <memory>
    #include <optional>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/strings/str_format.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/Sequence.h"
    #include "llvm/ADT/StringMap.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/Twine.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

              - Doesn't say anything about flavor (required 'free')"""
        }
    
        def "transitive dependencies of selected configuration are included"() {
            given:
            createDirs("a", "b", "c", "d")
            file('settings.gradle') << "include 'a', 'b', 'c', 'd'"
            buildFile << """
                $typeDefs
    
                allprojects {
                   dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
      // and the same audit annotation key, the annotation key will be identical.
      // In this case, the first annotation written with the key will be included
      // in the audit event and all subsequent annotations with the same key
      // will be discarded.
      //
      // Required.
      optional string key = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    In particular, the same file is used for both the (sub)projects and `buildSrc`.
    
    If an included build is used:
    
    - the configuration file of the _current_ build is used for verification
    - so if the included build itself uses verification, its configuration is ignored in favor of the current one
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                            parent = null;
                        }
                    }
    
                    // if the included ivy file is not found on file system, tries to resolve using
                    // repositories
                    if (parent == null) {
                        LOGGER.debug("Trying to parse included ivy file by asking repository for module :{}#{};{}",
                            parentOrganisation, parentModule, parentRevision);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    #include <cassert>
    #include <cstdint>
    #include <deque>
    #include <memory>
    #include <optional>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/DenseSet.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallVector.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                task (copy, type:Copy) {
                   into 'dest'
                   from('files/one') {
                      into '1'
                      include '**/*.a'
                   }
                   from('files/two') {
                      into '2'
                      include '**/*.b'
                   }
                   exclude '**/ignore/**'
                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top