Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,138 for repoA (0.12 sec)

  1. .pre-commit-config.yaml

    default_language_version:
        python: python3.10
    repos:
    -   repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v4.4.0
        hooks:
        -   id: check-added-large-files
        -   id: check-toml
        -   id: check-yaml
            args:
            -   --unsafe
        -   id: end-of-file-fixer
        -   id: trailing-whitespace
    -   repo: https://github.com/charliermarsh/ruff-pre-commit
        rev: v0.2.0
        hooks:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 737 bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/SamplesIvyPublishIntegrationTest.groovy

        def publishesRpmArtifact() {
            given:
            sample sampleProject
            def artifactId = "publish-artifact"
            def version = "1.0"
            def repo = ivy(sampleProject.dir.file("build/repo"))
            def module = repo.module("org.gradle.sample", artifactId, version).withModuleMetadata()
    
            when:
            succeeds "publish"
    
            then:
            executed ":rpm", ":publish"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. tools/gen_istio_image_list.sh

                  else
                    buff=${buff%\\}$line
                    break
                  fi
               fi
           fi
        done < temp.file
    
        for repo in $buff; do
           if [[ $repo == *docker.* ]]
           then
               istio_component=${repo##*docker.};
               istio_repo=istio/$istio_component;
               echo docker.io/"$istio_repo":"${1}"
           fi
        done
    
        if [ -f temp.file ];
        then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ivy-publish/conditional-publishing/groovy/build.gradle

            }
        }
        repositories {
            // change URLs to point to your repos, e.g. http://my.org/repo
            ivy {
                name "external"
                url layout.buildDirectory.dir('repos/external')
            }
            ivy {
                name "internal"
                url layout.buildDirectory.dir('repos/internal')
            }
        }
    }
    // end::publishing[]
    
    // tag::task-config[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/kotlin/build.gradle.kts

            }
        }
        repositories {
            // change URLs to point to your repos, e.g. http://my.org/repo
            maven {
                name = "external"
                url = uri(layout.buildDirectory.dir("repos/external"))
            }
            maven {
                name = "internal"
                url = uri(layout.buildDirectory.dir("repos/internal"))
            }
        }
    }
    // end::publishing[]
    
    // tag::task-config[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/groovy/build.gradle

            }
        }
        repositories {
            // change URLs to point to your repos, e.g. http://my.org/repo
            maven {
                name = 'external'
                url = layout.buildDirectory.dir('repos/external')
            }
            maven {
                name = 'internal'
                url = layout.buildDirectory.dir('repos/internal')
            }
        }
    }
    // end::publishing[]
    
    // tag::task-config[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. hack/pin-dependency.sh

    fi
    
    # Propagate pinned version to staging repos
    for repo in $(kube::util::list_staging_repos); do
      pushd "staging/src/k8s.io/${repo}" >/dev/null 2>&1
        go mod edit -require "${dep}@${rev}"
    
        # When replacing with a fork, always add a replace statement in all go.mod
        # files (not just the root of the staging repos!) because there might be
        # indirect dependencies on the fork.
        #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/signing/maven-publish/groovy/build.gradle

    // end::versions-resolved[]
    // end::pom-customization[]
        repositories {
            maven {
                // change URLs to point to your repos, e.g. http://my.org/repo
                def releasesRepoUrl = layout.buildDirectory.dir('repos/releases')
                def snapshotsRepoUrl = layout.buildDirectory.dir('repos/snapshots')
                url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
            }
        }
    // tag::pom-customization[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

    // end::flat-dir-multi[]
    
    // tag::ivy-repo[]
    repositories {
        ivy {
            url "http://repo.mycompany.com/repo"
        }
    }
    // end::ivy-repo[]
    
    // tag::local-ivy-repo[]
    repositories {
        ivy {
            // URL can refer to a local directory
            url "../local-repo"
        }
    }
    // end::local-ivy-repo[]
    
    // tag::ivy-repo-with-maven-layout[]
    repositories {
        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                Map<String, ArtifactRepository> repos = new LinkedHashMap<>();
    
                for (ArtifactRepository repo : requestRepositories) {
                    if (!repos.containsKey(repo.getId())) {
                        repos.put(repo.getId(), repo);
                    }
                }
    
                for (ArtifactRepository repo : pomRepositories) {
                    if (!repos.containsKey(repo.getId())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 30.3K bytes
    - Viewed (0)
Back to top