Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for projectD (0.63 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    Gradle will inspect the group and name for the projects in the included build and substitute project dependencies for any external dependency matching `${project.group}:${project.name}`.
    
    [NOTE]
    ====
    By default, substitutions are not registered for the _main_ build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    Resolving a configuration can have side effects on Gradle's project model.
    As a result, Gradle must manage access to each project's configurations.
    There are a number of ways a configuration might be resolved unsafely.
    For example:
    
    * A task from one project directly resolves a configuration in another project in the task's action.
    * A task specifies a configuration from another project as an input file collection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. docs/sts/ldap.md

    ```sh
    mc idp ldap policy attach myminio mypolicy ----group='cn=projectx,ou=groups,ou=hwengg,dc=min,dc=io'
    ```
    
    To remove a policy association, use the similar `detach` command:
    
    ```sh
    mc idp ldap policy detach myminio mypolicy --user='uid=james,cn=accounts,dc=myldapserver,dc=com'
    ```
    
    ```sh
    mc idp ldap policy detach myminio mypolicy ----group='cn=projectx,ou=groups,ou=hwengg,dc=min,dc=io'
    ```
    
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/path/filepath/path_test.go

    	{"/a", "a", "err"},
    }
    
    var winreltests = []RelTests{
    	{`C:a\b\c`, `C:a/b/d`, `..\d`},
    	{`C:\`, `D:\`, `err`},
    	{`C:`, `D:`, `err`},
    	{`C:\Projects`, `c:\projects\src`, `src`},
    	{`C:\Projects`, `c:\projects`, `.`},
    	{`C:\Projects\a\..`, `c:\projects`, `.`},
    	{`\\host\share`, `\\host\share\file.txt`, `file.txt`},
    }
    
    func TestRel(t *testing.T) {
    	tests := append([]RelTests{}, reltests...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaProjectIntegrationTest.groovy

        void "can recursively build dependent and dependee projects"() {
            createDirs("a", "b", "c")
            testFile("settings.gradle") << "include 'a', 'b', 'c'"
            testFile("build.gradle") << """
                allprojects { apply plugin: 'java-library' }
    
                project(':a') {
                    dependencies { api project(':b') }
                }
    
                project(':b') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    └── url-verifier-plugin    // <2>
        ├── build.gradle
        ├── settings.gradle
        └── src
    ----
    <1> Consuming project that includes the plugin project
    <2> The plugin project
    
    There are two ways to include a plugin project in a consuming project:
    
    1. By using the command line option `--include-build`.
    
    2. By using the method `includeBuild` in `settings.gradle`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    [[sec:binary_plugin_example]]
    [source, build.gradle.kts]
    ----
    class MyPlugin : Plugin<Project> {
        override fun apply(project: Project) {
            println("Plugin ${this.javaClass.simpleName} applied on ${project.name}")
        }
    }
    
    apply<MyPlugin>()
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

            ""                           | "buildB"  | "buildB"       | "default root project name"
            "rootProject.name='someLib'" | "buildB"  | "someLib"      | "configured root project name"
        }
    
        def "project component identifiers know if projects belong to the current build or not"() {
            def buildC = singleProjectBuild('buildC') {
                buildFile << "apply plugin: 'java'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

                outputModels[childScriptModel.scriptFile] = buildOutputModel(base, childScriptModel)
            }
        }
    
        fun visit(project: Project) {
            val children = ProjectHierarchyUtils.getChildProjectsForInternalUse(project).toList()
            val childrenModels = intermediateModelProvider.getIsolatedModels(project, children)
            childrenModels.forEach { collect(it) }
            children.forEach { visit(it) }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. cluster/gce/config-default.sh

        echo -e "${color_red:-}Cannot set MAX_PODS_PER_NODE for route-based projects for ${PROJECT}." >&2
        exit 1
      fi
      if [[ "$(get-num-nodes)" -gt 100 ]]; then
        echo -e "${color_red:-}Cannot create cluster with more than 100 nodes for route-based projects for ${PROJECT}." >&2
        exit 1
      fi
    fi
    
    # Enable GCE Alpha features.
    if [[ -n "${GCE_ALPHA_FEATURES:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top