Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,581 for mprotect (0.34 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

    + tasks
          | Type:   \torg.gradle.model.ModelMap<org.gradle.api.Task>
          | Creator: \tProject.<init>.tasks()
        + buildEnvironment
              | Type:   \torg.gradle.api.tasks.diagnostics.BuildEnvironmentReportTask
              | Value:  \ttask ':buildEnvironment\'
              | Creator: \tProject.<init>.tasks.buildEnvironment()
              | Rules:
                 ⤷ copyToTaskContainer
        + components
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    The following example demonstrates publishing with a multi-project build.
    Each project publishes a Java component configured to also build and publish Javadoc and source code artifacts.
    The descriptor file is customized to include the project description for each project.
    
    .Publishing a Java module
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/read.go

    		return pkg, nil
    	})
    }
    
    var errCorrupt = errors.New("corrupt index")
    
    // protect marks the start of a large section of code that accesses the index.
    // It should be used as:
    //
    //	defer unprotect(protect, &err)
    //
    // It should not be used for trivial accesses which would be
    // dwarfed by the overhead of the defer.
    func protect() bool {
    	return debug.SetPanicOnFault(true)
    }
    
    var isTest = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    There are some restrictions.
    
    In a regular build, Gradle ensures that each project has a unique _project path_.
    It makes projects identifiable and addressable without conflicts.
    
    In a composite build, Gradle adds additional qualification to each project from an included build to avoid project path conflicts.
    The full path to identify a project in a composite build is called a _build-tree path_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    [source,kotlin]
    ----
    enableFeaturePreview("GROOVY_COMPILATION_AVOIDANCE")
    ----
    =====
    ====
    
    If a dependent project has changed in an https://en.wikipedia.org/wiki/Application_binary_interface[ABI]-compatible way (only its private API has changed), then Groovy compilation tasks will be up-to-date.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            assertWatchedHierarchies([])
            // We don't remove actual usable content at the end of the build, though we remove some dangling paths.
            // This is because the project directory is underneath the unsupported file system, so after invalidating D: the project root node is removed from the VFS.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    The following example declares the dependencies on the `utils` and `api` project from the `web-service` project. The method link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:project(java.lang.String)[Project.project(java.lang.String)] creates a reference to a specific subproject by path.
    
    .Declaring project dependencies
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

            pomReader.properties['project.parent.version'] == 'version-one'
            pomReader.properties['project.parent.groupId'] == 'group-one'
            pomReader.properties['project.parent.artifactId'] == 'artifact-one'
            pomReader.relocation == null
            !pomReader.hasGradleMetadataMarker()
        }
    
        def "use custom properties in POM project coordinates"() {
            when:
            pomFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

     * _Configuration_ (ex: `implementation`) - a named collection of dependencies, grouped together for a specific goal such as compiling or linking a module
     * _Project reference_ (ex: `project(':common')`) - the project referenced by the specified path
    
    You can find a more comprehensive glossary of dependency management terms <<dependency_management_terminology.adoc#dependency_management_terminology,here>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

     * _Configuration_ (ex: `implementation`) - a named collection of dependencies, grouped together for a specific goal such as compiling or linking a module
     * _Project reference_ (ex: `project(':common')`) - the project referenced by the specified path
    
    You can find a more comprehensive glossary of dependency management terms <<dependency_management_terminology.adoc#dependency_management_terminology,here>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
Back to top