Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,069 for dev2 (0.04 sec)

  1. Dockerfile.release.fips

    FROM registry.access.redhat.com/ubi9/ubi-micro:latest
    
    ARG RELEASE
    
    LABEL name="MinIO" \
          vendor="MinIO Inc <dev@min.io>" \
          maintainer="MinIO Inc <dev@min.io>" \
          version="${RELEASE}" \
          release="${RELEASE}" \
          summary="MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service." \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. docker/Dockerfile.distroless

    # prepare a distroless source context to copy files from
    FROM cgr.dev/chainguard/static@sha256:873e9709e2a83acc995ff24e71c100480f9c0368e0d86eaee9c3c7cb8fb5f0e0 as distroless_source
    
    # prepare a base dev to modify file contents
    FROM ubuntu:noble as ubuntu_source
    
    # Modify contents of container
    COPY --from=distroless_source /etc/ /home/etc
    COPY --from=distroless_source /home/nonroot /home/nonroot
    RUN echo istio-proxy:x:1337: >> /home/etc/group
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 828 bytes
    - Viewed (0)
  3. docs/iam/policies/pbac-tests.sh

    		chmod +x kes
    fi
    
    if ! openssl version &>/dev/null; then
    	apt install openssl || sudo apt install opensssl
    fi
    
    # Start KES Server
    (./kes server --dev 2>&1 >kes-server.log) &
    kes_pid=$!
    sleep 5s
    API_KEY=$(grep "API Key" <kes-server.log | awk -F" " '{print $3}')
    (openssl s_client -connect 127.0.0.1:7373 2>/dev/null 1>public.crt)
    
    export CI=true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom

      <mailingLists>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</subscribe>
          <unsubscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</unsubscribe>
          <archive>http://lists.codehaus.org/pipermail/plexus-dev/</archive>
        </mailingList>
      </mailingLists>
    
      <distributionManagement>
        <repository>
          <id>repo1</id>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom

      <mailingLists>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</subscribe>
          <unsubscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</unsubscribe>
          <archive>http://lists.codehaus.org/pipermail/plexus-dev/</archive>
        </mailingList>
      </mailingLists>
    
      <distributionManagement>
        <repository>
          <id>repo1</id>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 5.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependencyTest.groovy

            def conf = project.configurations.create("conf")
            conf.extendsFrom(superConf)
    
            def dep1 = Mock(ProjectDependency)
            def dep2 = Mock(ExternalDependency)
            conf.dependencies.add(dep1)
            superConf.dependencies.add(dep2)
    
            projectDependency = new DefaultProjectDependency(project, "conf", true, TestFiles.taskDependencyFactory())
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. util/update_snapshot_docs.sh

    cd $HOME
    git clone -q -b gh-pages "https://x-access-token:${GITHUB_TOKEN}@github.com/google/guava.git" gh-pages > /dev/null
    cd gh-pages
    
    git config --global user.name "$GITHUB_ACTOR"
    git config --global user.email "$******@****.***"
    
    ./updaterelease.sh snapshot
    
    git push -fq origin gh-pages > /dev/null
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 16 16:48:28 UTC 2021
    - 439 bytes
    - Viewed (0)
  8. src/test/resources/before_script.sh

      fi
      if [[ ${error_count} -ge 60 ]] ; then
        echo "Fess is not available."
        cat ${temp_log_file} ./fess-*/logs/*.log
        exit 1
      fi
      sleep 1
    done
    
    pushd /tmp >/dev/null
    git clone https://github.com/codelibs/fess-testdata.git
    popd >/dev/null
    
    cat ${temp_log_file} ./fess-*/logs/*.log
    curl -s "http://localhost:9201/_cat/indices?v"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 863 bytes
    - Viewed (0)
  9. pkg/volume/metrics_block.go

    // the end.
    func (mb *metricsBlock) getBlockInfo(metrics *Metrics) error {
    	dev, err := os.Open(mb.device)
    	if err != nil {
    		return fmt.Errorf("unable to open device %q: %w", mb.device, err)
    	}
    	defer dev.Close()
    
    	end, err := dev.Seek(0, io.SeekEnd)
    	if err != nil {
    		return fmt.Errorf("failed to detect size of %q: %w", mb.device, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. src/go/parser/testdata/tparams.go2

    func f[a b, 0 /* ERROR "expected '\)', found 0" */ ] ()
    
    // go.dev/issue/49482
    type (
    	_[a *[]int] struct{}
    	_[a *t,] struct{}
    	_[a *t|[]int] struct{}
    	_[a *t|t,] struct{}
    	_[a *t|~t,] struct{}
    	_[a *struct{}|t] struct{}
    	_[a *t|struct{}] struct{}
    	_[a *struct{}|~t] struct{}
    )
    
    // go.dev/issue/51488
    type (
    	_[a *t|t,] struct{}
    	_[a *t|t, b t] struct{}
    	_[a *t|t] struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top