Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for DL (0.05 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/DefaultLifecyclesTest.java

            DefaultLifecycles dl = new DefaultLifecycles(
                    new DefaultLifecycleRegistry(
                            List.of(new DefaultLifecycleRegistry.LifecycleWrapperProvider(mockedPlexusContainer))),
                    new DefaultLookup(mockedPlexusContainer));
    
            assertThat(dl.getLifeCycles().get(0).getId(), is("clean"));
            assertThat(dl.getLifeCycles().get(1).getId(), is("default"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/toolchain.go

    // The naming conflict is unfortunate: "golang.org/toolchain"
    // should perhaps have been "go.dev/dl", but it's too late.
    //
    // For clarity, this file refers to golang.org/toolchain as the "DL" repo,
    // the one you can actually download.
    type toolchainRepo struct {
    	path string // either "go" or "toolchain"
    	repo Repo   // underlying DL repo
    }
    
    func (r *toolchainRepo) ModulePath() string {
    	return r.path
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/DebugOptions.java

         * The list may contain any of the following keywords (without spaces in between):
         *
         * <dl>
         *     <dt>{@code source}
         *     <dd>Source file debugging information
         *     <dt>{@code lines}
         *     <dd>Line number debugging information
         *     <dt>{@code vars}
         *     <dd>Local variable debugging information
         * </dl>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 02:50:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. Dockerfile.hotfix

    # Download minio binary and signature file
    RUN curl -s -q https://dl.min.io/server/minio/hotfixes/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /go/bin/minio && \
        curl -s -q https://dl.min.io/server/minio/hotfixes/linux-${TARGETARCH}/archive/minio.${RELEASE}.minisig -o /go/bin/minio.minisig && \
        chmod +x /go/bin/minio
    
    # Download mc binary and signature file
    RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. Dockerfile.release

    # Download minio binary and signature file
    RUN curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /go/bin/minio && \
        curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.minisig -o /go/bin/minio.minisig && \
        chmod +x /go/bin/minio
    
    # Download mc binary and signature file
    RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 29 19:10:49 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. Dockerfile.release.old_cpu

    # Download minio binary and signature file
    RUN curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /go/bin/minio && \
        curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.minisig -o /go/bin/minio.minisig && \
        chmod +x /go/bin/minio
    
    # Download mc binary and signature file
    RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java

            blockElements.add("tr");
            blockElements.add("dl");
            blockElements.add("dt");
            blockElements.add("dd");
    
            blockContent.add("ul");
            blockContent.add("ol");
            blockContent.add("table");
            blockContent.add("thead");
            blockContent.add("tbody");
            blockContent.add("tr");
            blockContent.add("dl");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  8. cluster/addons/addon-manager/Makefile

    KUBECTL_VERSION?=v1.27.1
    
    BASEIMAGE=registry.k8s.io/debian-base-$(ARCH):v1.0.1
    
    SUDO=$(if $(filter 0,$(shell id -u)),,sudo)
    
    .PHONY: build push
    
    all: build
    
    build:
    	cp ./* $(TEMP_DIR)
    	curl -sSL --retry 5 https://dl.k8s.io/release/$(KUBECTL_VERSION)/bin/linux/$(ARCH)/kubectl > $(TEMP_DIR)/kubectl
    	chmod a+rx $(TEMP_DIR)/kube-addons.sh $(TEMP_DIR)/kube-addons-main.sh $(TEMP_DIR)/kubectl
    
    ifneq ($(ARCH),amd64)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. Dockerfile.release.fips

        apk add -U --no-cache curl && \
        go install aead.dev/minisign/cmd/minisign@v0.2.1
    
    # Download minio binary and signature file
    RUN curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.fips -o /go/bin/minio && \
        curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.fips.minisig -o /go/bin/minio.minisig && \
        chmod +x /go/bin/minio
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactRepositoryContainer.java

        String DEFAULT_MAVEN_CENTRAL_REPO_NAME = "MavenRepo";
        String DEFAULT_MAVEN_LOCAL_REPO_NAME = "MavenLocal";
        String MAVEN_CENTRAL_URL = "https://repo.maven.apache.org/maven2/";
        String GOOGLE_URL = "https://dl.google.com/dl/android/maven2/";
    
        /**
         * Adds a repository to this container, at the end of the repository sequence.
         *
         * @param repository The repository to add.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top