Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 363 for debugLink (0.17 sec)

  1. internal/config/identity/tls/config.go

    	// when requesting temp. credentials.
    	// By default, MinIO always verify the client certificate.
    	//
    	// The client certificate verification should only be skipped
    	// when debugging or testing a setup since it allows arbitrary
    	// clients to obtain temp. credentials with arbitrary policy
    	// permissions - including admin permissions.
    	EnvIdentityTLSSkipVerify = "MINIO_IDENTITY_TLS_SKIP_VERIFY"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

        }
    
        /**
         * Tells whether to include debugging information in the generated class files. Defaults
         * to {@code true}. See {@link DebugOptions#getDebugLevel()} for which debugging information will be generated.
         */
        @Input
        public boolean isDebug() {
            return debug;
        }
    
        /**
         * Sets whether to include debugging information in the generated class files. Defaults
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. docs/debugging/s3-verify/go.mod

    module github.com/minio/minio/docs/debugging/s3-verify
    
    go 1.21
    
    require github.com/minio/minio-go/v7 v7.0.70
    
    require (
    	github.com/dustin/go-humanize v1.0.1 // indirect
    	github.com/goccy/go-json v0.10.2 // indirect
    	github.com/google/uuid v1.6.0 // indirect
    	github.com/klauspost/compress v1.17.8 // indirect
    	github.com/klauspost/cpuid/v2 v2.2.7 // indirect
    	github.com/minio/md5-simd v1.1.2 // indirect
    	github.com/rs/xid v1.5.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 13 17:59:52 UTC 2024
    - 688 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        // specified.
        DEBUGGER_TYPE_WHOLE_MODEL = 1;
        // DEBUGGER_TYPE_INT_PER_LAYER creates a debugging model with both quantized
        // and unquantized layers. The unquantized layer's input come from the
        // previous quantized layer (Please note that this part is different part
        // from DEBUGGER_TYPE_FLOAT_PER_LAYER). Each layer in the debugging model
        // has a DumpTensor, and it is used to save the entire value of outputs from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. docs/debugging/inspect/go.mod

    module github.com/minio/minio/docs/debugging/inspect
    
    go 1.21
    
    require (
    	github.com/klauspost/compress v1.17.8
    	github.com/klauspost/filepathx v1.1.1
    	github.com/minio/colorjson v1.0.7
    	github.com/minio/madmin-go/v3 v3.0.52
    	github.com/secure-io/sio-go v0.3.1
    	github.com/tinylib/msgp v1.1.9
    )
    
    require (
    	github.com/cespare/xxhash/v2 v2.3.0 // indirect
    	github.com/fatih/color v1.17.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 09:27:44 UTC 2024
    - 668 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/debugger.h

    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_DEBUGGER_H_
    
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    
    namespace stablehlo::quantization {
    
    // Disables debugging on `DumpTensor` ops.
    void DisableDebugging(mlir::ModuleOp module_op);
    
    // Changes the filename from `unquantized_tensor_data.pb` to
    // `quantized_tensor_data.pb`.
    void ChangeToQuantizedFilename(mlir::ModuleOp module_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 00:17:12 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. pilot/docker/Dockerfile.ztunnel

    WORKDIR /
    
    ARG istio_version
    
    # Install ztunnel.
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/ztunnel /usr/local/bin/ztunnel
    
    # Environment variable indicating the exact build, for debugging
    ENV ISTIO_META_ISTIO_VERSION $istio_version
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingSequencingPass();
    
    // This is a strictly sequential and formally correct fallback option for the
    // embedding pipelining pass intended for debugging during pipelining
    // development.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingPipeliningPass();
    
    // Passes in the program key to embedding ops, by moving the embedding ops
    // after the _TPUCompileMlir op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    			if c.Process != nil && c.ProcessState == nil {
    				debugHint := ""
    				if c.createdByStack == nil {
    					debugHint = " (set GODEBUG=execwait=2 to capture stacks for debugging)"
    				} else {
    					os.Stderr.WriteString("GODEBUG=execwait=2 detected a leaked exec.Cmd created by:\n")
    					os.Stderr.Write(c.createdByStack)
    					os.Stderr.WriteString("\n")
    					debugHint = ""
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. Makefile

    	@echo "Verify resolving inconsistent versions build with race"
    	@(env bash $(PWD)/buildscripts/resolve-right-versions.sh)
    
    build-debugging:
    	@(env bash $(PWD)/docs/debugging/build.sh)
    
    build: checks build-debugging ## builds minio to $(PWD)
    	@echo "Building minio binary to './minio'"
    	@CGO_ENABLED=0 go build -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top