Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 102 for projectB (0.46 sec)

  1. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

    /**
     * A model resolver to assist building of projects. This resolver gives priority to those repositories that have been
     * declared in the POM.
     *
     */
    public class ProjectModelResolver implements ModelResolver {
    
        private static final int MAX_CAP = 0x7fff;
    
        private final RepositorySystemSession session;
    
        private final RequestTrace trace;
    
        private final String context = "project";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    The default behavior is equivalent to calling this method:
    
    .Preferring rules declared in projects
    ====
    include::sample[dir="snippets/dependencyManagement/customizingResolution-metadataRule/kotlin",files="settings.gradle.kts[tags=prefer-projects]"]
    include::sample[dir="snippets/dependencyManagement/customizingResolution-metadataRule/groovy",files="settings.gradle[tags=prefer-projects]"]
    ====
    
    
    [[sec:component_metadata_rules_details]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                return delegate.project(referrer, path, configureAction)
            }
    
            override fun project(referrer: ProjectInternal, path: String, configureAction: Action<in Project>): ProjectInternal {
                return delegate.project(referrer, path, configureAction)
            }
    
            override fun getSubprojects(): Set<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. src/compress/bzip2/bzip2.go

    import "io"
    
    // There's no RFC for bzip2. I used the Wikipedia page for reference and a lot
    // of guessing: https://en.wikipedia.org/wiki/Bzip2
    // The source code to pyflate was useful for debugging:
    // http://www.paul.sladen.org/projects/pyflate
    
    // A StructuralError is returned when the bzip2 data is found to be
    // syntactically invalid.
    type StructuralError string
    
    func (s StructuralError) Error() string {
    	return "bzip2 data invalid: " + string(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

        </class>
        <class>
          <name>License</name>
          <description>Describes the licenses for this project. This is used to generate the license
            page of the project's website, as well as being taken into consideration in other reporting
            and validation. The licenses listed for the project are that of the project itself, and not
            of dependencies.</description>
          <version>3.0.0+</version>
          <fields>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    
    [[sec:command_line_project_reporting]]
    == Project reporting
    
    Gradle provides several built-in tasks which show particular details of your build.
    This can be useful for understanding your build's structure and dependencies, as well as debugging problems.
    
    === Listing projects
    Running the `projects` task gives you a list of the subprojects of the selected project, displayed in a hierarchy:
    
    ----
    $ gradle projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. cluster/log-dump/log-dump.sh

          gcloud compute instances get-serial-port-output --project "${PROJECT}" --zone "${ZONE}" --port 1 "${node}" > "${dir}/serial-1.log" || true
          source_file_args=()
          for single_file in "${files[@]}"; do
            source_file_args+=( "${node}:${single_file}" )
          done
          gcloud compute scp --recurse --project "${PROJECT}" --zone "${ZONE}" "${source_file_args[@]}" "${dir}" > /dev/null || true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/import.go

    	// Iterating over selected modules would make the overall loading time
    	// O(M × P) for M modules providing P imported packages, whereas iterating
    	// over path prefixes is only O(P × k) with maximum path depth k. For
    	// large projects both M and P may be very large (note that M ≤ P), but k
    	// will tend to remain smallish (if for no other reason than filesystem
    	// path limitations).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

    }
    
    # Use the gcloud defaults to find the project.  If it is already set in the
    # environment then go with that.
    #
    # Vars set:
    #   PROJECT
    #   NETWORK_PROJECT
    #   PROJECT_REPORTED
    function detect-project() {
      if [[ -z "${PROJECT-}" ]]; then
        PROJECT=$(gcloud config list project --format 'value(core.project)')
      fi
    
      NETWORK_PROJECT=${NETWORK_PROJECT:-${PROJECT}}
    
      if [[ -z "${PROJECT-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "configMap information about the configMap data to project"
              },
              "downwardAPI": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIProjection"
                  }
                ],
                "description": "downwardAPI information about the downwardAPI data to project"
              },
              "secret": {
                "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top