Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Searle (0.1 sec)

  1. releasenotes/notes/51377.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 51377
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 201 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    // limitations under the License.
    
    [[writing_settings_files]]
    = Writing Settings Files
    
    The settings file is the entry point of every Gradle build.
    
    image::author-gradle-7.png[]
    
    Early in the Gradle Build lifecycle, the <<build_lifecycle.adoc#sec:initialization,initialization phase>> finds the settings file in your <<directory_layout#dir:project_root,project root directory>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr6_writing_tasks.adoc

    Actions are added to a Task via the `doFirst{}` and `doLast{}` closures.
    
    A Task can depend on other tasks.
    
    == Step 2. Register and Configure Tasks
    
    Early on in the tutorial, we registered and configured `task1` in the `app` build script:
    
    [.multi-language-sample]
    =====
    .app/build.gradle.kts
    [source,kotlin]
    ----
    tasks.register("task1"){  // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    [[init_scripts]]
    = Initialization Scripts
    
    Initialization scripts are scripts that run before the build script is executed.
    They allow you to customize the build environment or configure settings early in the build.
    
    Initialization scripts can be useful for setting up common configurations, such as repositories, plugins, or custom tasks, across multiple projects.
    
    [[sec:basic_usage]]
    == Using an init script
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top