Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for Repo (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/LegacyRepositorySystemSessionExtender.java

            if (selector != null) {
                RemoteRepository repo = RepositoryUtils.toRepo(repository);
                org.eclipse.aether.repository.Authentication auth = selector.getAuthentication(repo);
                if (auth != null) {
                    repo = new RemoteRepository.Builder(repo)
                            .setAuthentication(auth)
                            .build();
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  2. module.xml

    	<property name="modules.dir" value="${basedir}/modules" />
    	<property name="target.dir" value="${basedir}/target/modules" />
    
    	<!-- Maven Repository -->
    	<property name="maven.snapshot.repo.url" value="https://maven.codelibs.org/" />
    	<property name="maven.release.repo.url" value="https://maven.codelibs.org/" />
    	<property name="opensearch.version" value="2.13.0" />
    
    	<target name="install.modules">
    		<mkdir dir="${target.dir}" />
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 04 02:03:51 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

    import model.StageName
    
    fun checkCleanDirUnixLike(dir: String, exitOnFailure: Boolean = true) = """
        REPO=$dir
        if [ -e ${'$'}REPO ] ; then
            tree ${'$'}REPO
            rm -rf ${'$'}REPO
            echo "${'$'}REPO was polluted during the build"
            ${if (exitOnFailure) "exit 1" else ""}
        else
            echo "${'$'}REPO does not exist"
        fi
    
    """.trimIndent()
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  4. common/config/.golangci-format.yml

    # WARNING: DO NOT EDIT, THIS FILE IS PROBABLY A COPY
    #
    # The original version of this file is located in the https://github.com/istio/common-files repo.
    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    run:
      # Timeout for analysis, e.g. 30s, 5m.
      # Default: 1m
      timeout: 20m
      build-tags:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 05 03:02:37 GMT 2024
    - 2K bytes
    - Viewed (0)
  5. bin/build_ztunnel.sh

      # TODO detect git changes or something to avoid unnecessarily building
      # BUILD_ZTUNNEL=1 with no BUILD_ZTUNNEL_REPO tries to infer BUILD_ZTUNNEL_REPO
      if [[ "${BUILD_ZTUNNEL_REPO:-}" == "" ]] && [[ "${BUILD_ZTUNNEL:-}" != "" ]]; then
        local ZTUNNEL_DIR
    	ZTUNNEL_DIR="$(pwd)/../ztunnel"
        if [[ -d "${ZTUNNEL_DIR}" ]]; then
          BUILD_ZTUNNEL_REPO="${ZTUNNEL_DIR}"
        else
          echo "No directory at ${ZTUNNEL_DIR}"
          return
        fi
      fi
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 21:46:06 GMT 2024
    - 5K bytes
    - Viewed (0)
  6. manifests/addons/gen.sh

      --include-crds \
      --set nameOverride=kiali \
      --set fullnameOverride=kiali \
      kiali-server \
      --repo https://kiali.org/helm-charts \
      -f "${WD}/values-kiali.yaml"
    } > "${ADDONS}/kiali.yaml"
    
    # Set up prometheus
    helm3 template prometheus prometheus \
      --namespace istio-system \
      --version 25.19.1 \
      --repo https://prometheus-community.github.io/helm-charts \
      -f "${WD}/values-prometheus.yaml" \
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 09 21:40:53 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  7. plugin.xml

    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    			<param name="plugin.name.prefix" value="opensearch-" />
    			<param name="plugin.name" value="configsync" />
    			<param name="plugin.version" value="2.13.1" />
    			<param name="plugin.zip.version" value="2.13.1" />
    		</antcall>
    		<!-- minhash -->
    		<antcall target="install.plugin">
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 04 02:03:51 GMT 2024
    - 3.5K bytes
    - Viewed (1)
  8. .cm/plugins/filters/byCodeowner/index.js

     * @param {string[]} files - the gitStream's files context variable
     * @param {Object} pr - the gitStream's pr context variable
     * @param {string} token - access token with repo:read scope, used to read the CODEOWNERS file
     * @param {string} pathToCodeOwners - path from repo root to CODEOWNERS file
     * @returns {Map} - Map from owner name to list of files they own
     * @example {{ files | byCodeowner(pr, env.CODEOWNERS_TOKEN, '.github/CODEOWNERS') }}
     **/
    
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 19:12:32 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  9. deps.xml

    	<property name="kopf.branch" value="fess-14" />
    
    	<!-- Maven Repository -->
    	<property name="maven.snapshot.repo.url" value="https://oss.sonatype.org/content/repositories/snapshots" />
    	<property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" />
    
    	<target name="install.jars">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${webinf.dir}/lib" />
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Apr 13 11:44:26 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  10. .mvn/wrapper/maven-wrapper.properties

    # specific language governing permissions and limitations
    # under the License.
    distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
    distributionSha256Sum=83aaf914c785c9faed661f223000a92d1de9553f5c82d3b4362e66d9c031625f
    Properties
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 15 21:44:53 GMT 2024
    - 1.1K bytes
    - Viewed (1)
Back to top