Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 398 for setup (0.04 sec)

  1. src/test/java/org/codelibs/fess/helper/AccessTokenHelperTest.java

    public class AccessTokenHelperTest extends UnitFessTestCase {
    
        protected static final int NUM = 20;
    
        private AccessTokenHelper accessTokenHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            accessTokenHelper = new AccessTokenHelper();
        }
    
        public void test_generateAccessToken() {
            List<String> tokens = new ArrayList<String>();
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. .github/workflows/vulncheck.yml

    jobs:
      vulncheck:
        name: Analysis
        runs-on: ubuntu-latest
        steps:
          - name: Check out code into the Go module directory
            uses: actions/checkout@v4
          - name: Set up Go
            uses: actions/setup-go@v5
            with:
              go-version: 1.22.7
          - name: Get official govulncheck
            run: go install golang.org/x/vuln/cmd/govulncheck@latest
            shell: bash
          - name: Run govulncheck
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Fri Sep 06 22:53:34 UTC 2024
    - 658 bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

    jobs:
      build:
        runs-on: ${{ matrix.os }}
    
        strategy:
          matrix:
            os: [ubuntu-latest, windows-latest]
    
        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 11
          uses: actions/setup-java@v2
          with:
            java-version: '11'
            distribution: 'adopt'
        - name: Build with Maven
    Registered: Sun Oct 27 04:35:21 UTC 2024
    - Last Modified: Sat Feb 19 00:40:24 UTC 2022
    - 675 bytes
    - Viewed (0)
  4. docs/integrations/veeam/README.md

    ## Prerequisites
    
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  5. cmd/os-readdir_test.go

    func TestReadDir(t *testing.T) {
    	var testResults []result
    
    	// Setup and capture test results for empty directory.
    	testResults = append(testResults, setupTestReadDirEmpty(t)...)
    	// Setup and capture test results for directory with only files.
    	testResults = append(testResults, setupTestReadDirFiles(t)...)
    	// Setup and capture test results for directory with files and directories.
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. .github/workflows/mint.yml

            run: |
              sudo -S rm -rf ${GITHUB_WORKSPACE}
              mkdir ${GITHUB_WORKSPACE}
          - name: checkout-step
            uses: actions/checkout@v4
    
          - name: setup-go-step
            uses: actions/setup-go@v5
            with:
              go-version: 1.22.x
    
          - name: github sha short
            id: vars
            run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
    
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

    public class GsaConfigParserTest extends UnitFessTestCase {
    
        private static final Logger logger = LogManager.getLogger(GsaConfigParserTest.class);
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            ComponentUtil.register(new SystemHelper(), "systemHelper");
        }
    
        public void test_parse() throws IOException {
            GsaConfigParser parser = new GsaConfigParser();
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. .github/workflows/upgrade-ci-cd.yaml

        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.22.x]
            os: [ubuntu-latest]
    
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Start upgrade tests
            run: |
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 729 bytes
    - Viewed (0)
  9. helm/minio/README.md

    The command deploys MinIO on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
    
    ### Installing the Chart (toy-setup)
    
    Minimal toy setup for testing purposes can be deployed using:
    
    ```bash
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/README.md

    - MinIO exports Prometheus compatible data by default which is bucket centric as an authorized endpoint at `/minio/v2/metrics/bucket`.
    
    This document explains how to setup Prometheus and configure it to scrape data from MinIO servers.
    
    ## Prerequisites
    
    To get started with MinIO, refer [MinIO QuickStart Document](https://min.io/docs/minio/linux/index.html#quickstart-for-linux).
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top