Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 164 for DL (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	ADCB $7, DL                             // 80d207
    	ADCB $7, R11                            // 4180d307
    	ADCB DL, (BX)                           // 1013
    	ADCB R11, (BX)                          // 44101b
    	ADCB DL, (R11)                          // 411013
    	ADCB R11, (R11)                         // 45101b
    	ADCB DL, DL                             // 10d2 or 12d2
    	ADCB R11, DL                            // 4410da or 4112d3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/log/slog/logger_test.go

    	ctx := context.Background()
    	dl := New(discardHandler{})
    	defer SetDefault(Default()) // restore
    	SetDefault(dl)
    
    	t.Run("Info", func(t *testing.T) {
    		wantAllocs(t, 0, func() { Info("hello") })
    	})
    	t.Run("Error", func(t *testing.T) {
    		wantAllocs(t, 0, func() { Error("hello") })
    	})
    	t.Run("logger.Info", func(t *testing.T) {
    		wantAllocs(t, 0, func() { dl.Info("hello") })
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  9. 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)
  10. gradle/shared-with-buildSrc/mirrors.settings.gradle.kts

    
    class Helper(private val providers: ProviderFactory) {
        val originalUrls: Map<String, String> = mapOf(
            "mavencentral" to "https://repo.maven.apache.org/maven2/",
            "google" to "https://dl.google.com/dl/android/maven2/",
            "gradle" to "https://repo.gradle.org/gradle/repo",
            "gradle-prod-plugins" to "https://plugins.gradle.org/m2",
            "gradlejavascript" to "https://repo.gradle.org/gradle/javascript-public",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top