Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 495 for minio1 (0.19 sec)

  1. docs/integrations/veeam/README.md

    - MinIO object storage set up per <https://min.io/docs/minio/linux/index.html>
    - Veeam requires TLS connections to the object storage.  This can be configured per <https://min.io/docs/minio/linux/operations/network-encryption.html>
    - The S3 bucket, Access Key and Secret Key have to be created before and outside of Veeam.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  2. buildscripts/minio-upgrade.sh

    	cleanup
    
    	TAG=minio/minio:dev make docker
    
    	MINIO_VERSION=RELEASE.2019-12-19T22-52-26Z docker-compose \
    		-f "buildscripts/upgrade-tests/compose.yml" \
    		up -d --build
    
    	add_alias
    
    	mc mb minio/minio-test/
    	mc cp ./minio minio/minio-test/to-read/
    	mc cp /etc/hosts minio/minio-test/to-read/hosts
    	mc anonymous set download minio/minio-test
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. docs/minio-limits.md

    ### List of Amazon S3 Bucket API's not supported on MinIO
    
    - BucketACL (Use [bucket policies](https://min.io/docs/minio/linux/administration/identity-access-management/policy-based-access-control.html) instead)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    		Uint(maxU8),
    		Uint(maxU8 - 1),
    		Uint(maxI8 + 1),
    		Uint(maxI8),
    		Uint(maxI8 - 1),
    		Uint(0),
    		Int(minI8 + 1),
    		Int(minI8),
    		Int(minI8 - 1),
    		Int(minI16 + 1),
    		Int(minI16),
    		Int(minI16 - 1),
    		Int(minI32 + 1),
    		Int(minI32),
    		Int(minI32 - 1),
    		Int(minI64 + 1),
    		Int(minI64),
    
    		// other possibly interesting values
    		Uint(1),
    		Int(-1),
    		Uint(0xff << 56),
    		Uint(0xff << 32),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  5. test/typeparam/minimp.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 187 bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt

    import java.io.BufferedOutputStream
    import java.io.File
    import java.io.FileOutputStream
    import java.util.jar.JarFile
    import java.util.jar.JarOutputStream
    
    
    @CacheableTransform
    abstract class Minify : TransformAction<Minify.Parameters> {
    
        interface Parameters : TransformParameters {
            @get:Input
            var keepClassesByArtifact: Map<String, Set<String>>
        }
    
        @get:PathSensitive(PathSensitivity.NAME_ONLY)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. cmd/metrics-v3-handler.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"encoding/json"
    	"fmt"
    	"net/http"
    	"slices"
    	"strings"
    
    	"github.com/minio/minio/internal/mcontext"
    	"github.com/minio/mux"
    	"github.com/prometheus/client_golang/prometheus"
    	"github.com/prometheus/client_golang/prometheus/promhttp"
    )
    
    type promLogger struct{}
    
    func (p promLogger) Println(v ...interface{}) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/init1.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // initialization cycles
    
    package init1
    
    // issue 6683 (marked as WorkingAsIntended)
    
    type T0 struct{}
    
    func (T0) m() int { return y0 }
    
    var x0 = T0{}
    
    var y0 /* ERROR "initialization cycle" */ = x0.m()
    
    type T1 struct{}
    
    func (T1) m() int { return y1 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. test/init1.go

    	sys1, numGC1 := memstats.Sys, memstats.NumGC
    	if sys1-sys >= N*MB || numGC1 == numGC {
    		println("allocated 1000 chunks of", MB, "and used ", sys1-sys, "memory")
    		println("numGC went", numGC, "to", numGC1)
    		panic("init1")
    	}
    }
    
    func send(c chan int) {
    	c <- 1
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/mini.go

    Keith Randall <******@****.***> 1658254141 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 22:09:44 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top