Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for openScope (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

                    onCreate = onCreate.mergeFrom(getEventRegister().getAddActions());
    
                    try (EvaluationContext.ScopeContext scope = openScope()) {
                        // Create the domain object
                        object = createDomainObject();
                        // Configuring the domain object may cause circular evaluation, but after initializing this.object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/xcode/plugins/XcodePluginTest.groovy

            when:
            child.pluginManager.apply(XcodePlugin)
    
            then:
            child.xcode instanceof XcodeExtension
        }
    
        def "adds 'openXcode' task"() {
            when:
            project.pluginManager.apply(XcodePlugin)
    
            then:
            project.tasks.openXcode != null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    ====
    
    [[sec:xcode_tasks]]
    == Tasks
    
    The Xcode Plugin adds a number of tasks to your project.
    The main tasks that you will use are the `xcode`, `cleanXcode` and `openXcode` tasks.
    
    The following diagram shows the relationships between tasks added by this plugin.
    
    .Xcode Plugin default task graph
    image::xcode-task-graph.png[]
    
    [[sec:xcode_lifecycle_tasks]]
    === Lifecycle Tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/xcode-task-graph.dot

        cppLibrary_xcodeProject[label="xcodeProject"]
      }
    
      {cppApplication_xcodeProject, cppLibrary_xcodeProject} -> xcode [dir=back, style=dashed]
      xcodeWorkspaceWorkspaceSettings -> xcodeWorkspace -> xcode -> openXcode [dir=back]
    
      xcodeWorkspace[label=<xcodeWorkspace>]
    
      xcodeWorkspace -> cleanXcode [style=invis]
      {rank=same xcodeWorkspace cleanXcode}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top