Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 837 for Unexport (0.15 sec)

  1. docs/multi-tenancy/README.md

    ```sh
    export MINIO_ROOT_USER=<TENANT1_ACCESS_KEY>
    export MINIO_ROOT_PASSWORD=<TENANT1_SECRET_KEY>
    minio server --address :9001 http://192.168.10.1{1...4}/data/tenant1
    
    export MINIO_ROOT_USER=<TENANT2_ACCESS_KEY>
    export MINIO_ROOT_PASSWORD=<TENANT2_SECRET_KEY>
    minio server --address :9002 http://192.168.10.1{1...4}/data/tenant2
    
    export MINIO_ROOT_USER=<TENANT3_ACCESS_KEY>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. hack/jenkins/benchmark-dockerized.sh

    export GO111MODULE=off
    
    # Install tools we need
    GO111MODULE=on go -C "${KUBE_ROOT}/hack/tools" install github.com/cespare/prettybench
    GO111MODULE=on go -C "${KUBE_ROOT}/hack/tools" install gotest.tools/gotestsum
    
    # Disable the Go race detector.
    export KUBE_RACE=" "
    # Disable coverage report
    export KUBE_COVER="n"
    export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. docs/throttle/README.md

    Example: Limit a MinIO cluster to accept at max 1600 simultaneous S3 API requests across 8 servers, and set the wait deadline of *2 minutes* per API operation.
    
    ```sh
    export MINIO_API_REQUESTS_MAX=1600
    export MINIO_API_REQUESTS_DEADLINE=2m
    export MINIO_ROOT_USER=your-access-key
    export MINIO_ROOT_PASSWORD=your-secret-key
    minio server http://server{1...8}/mnt/hdd{1...16}
    ```
    
    or
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. cluster/gce/windows/README-GCE-Windows-kube-up.md

    cluster-addons (e.g., `kube-dns`) need to run on Linux nodes. The master control
    plane only runs on Linux.
    
    ```bash
    export NUM_NODES=2  # number of Linux nodes
    export NUM_WINDOWS_NODES=2
    export KUBE_GCE_ENABLE_IP_ALIASES=true
    export KUBERNETES_NODE_PLATFORM=windows
    export LOGGING_STACKDRIVER_RESOURCE_TYPES=new
    ```
    
    Now bring up a cluster using one of the following two methods:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. test/fixedbugs/issue14164.dir/a.go

    // name in the export data.
    func F(x interface{}) bool {
    	_, ok := x.(interface {
    		f()
    	})
    	return ok
    }
    
    // Like F but with the unexported interface method f
    // defined via an embedded interface t. The compiler
    // always flattens embedded interfaces so there should
    // be no difference between F and G. Alas, currently
    // G is not inlineable (at least via export data), so
    // the issue is moot, here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 01 20:29:19 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  6. buildscripts/disable-root.sh

    minio server --address 127.0.0.1:9004 "http://127.0.0.1:9003/tmp/multisiteb/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9004/tmp/multisiteb/data/disterasure/xl{5...8}" >/tmp/siteb_2.log 2>&1 &
    
    export MC_HOST_sitea=http://minioadmin:minioadmin@127.0.0.1:9001
    export MC_HOST_siteb=http://minioadmin:minioadmin@127.0.0.1:9004
    
    ./mc ready sitea
    ./mc ready siteb
    
    ./mc admin replicate add sitea siteb
    
    ./mc admin user add sitea foobar foo12345
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/install_goroot_targets.txt

    [short] skip
    
    # Packages in std do not have an install target.
    go list -f '{{.Target}}' fmt
    ! stdout .
    go list -export -f '{{.Export}}' fmt
    stdout $GOCACHE
    
    # With GODEBUG=installgoroot=all, fmt has a target.
    # (Though we can't try installing it without modifying goroot).
    env GODEBUG=installgoroot=all
    go list -f '{{.Target}}' fmt
    stdout fmt\.a
    
    # However, the fake packages "builtin" and "unsafe" do not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 22:43:41 UTC 2022
    - 747 bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_internal.h

    #include "tensorflow/c/eager/tfe_cancellation_manager_internal.h"  // IWYU pragma: export
    #include "tensorflow/c/eager/tfe_executor_internal.h"  // IWYU pragma: export
    #include "tensorflow/c/eager/tfe_monitoring_internal.h"  // IWYU pragma: export
    #include "tensorflow/c/eager/tfe_op_attrs_internal.h"  // IWYU pragma: export
    #include "tensorflow/c/eager/tfe_tensor_debug_info_internal.h"  // IWYU pragma: export
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 18 19:26:34 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/go/internal/gccgoimporter/ar.go

    const arfmag = "`\n"
    
    // arExportData takes an archive file and returns a ReadSeeker for the
    // export data in that file. This assumes that there is only one
    // object in the archive containing export data, which is not quite
    // what gccgo does; gccgo concatenates together all the export data
    // for all the objects in the file.  In practice that case does not arise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  10. docs/compression/README.md

    When set, environment variables override the defined `compress` config settings in the server config.
    
    ```bash
    export MINIO_COMPRESSION_ENABLE="on"
    export MINIO_COMPRESSION_EXTENSIONS=".txt,.log,.csv,.json,.tar,.xml,.bin"
    export MINIO_COMPRESSION_MIME_TYPES="text/*,application/json,application/xml"
    ```
    
    > [!NOTE]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top