Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 238 for debugLink (0.19 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. releasenotes/notes/inbound-cluster-name.yaml

        Services select the same pod. As a result, we have removed the port name and hostname - the new format will
        instead resemble `inbound|80||`.
    
        For most users, this is an implementation detail, and will only impact debugging or tooling that directly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 22 16:31:28 UTC 2020
    - 778 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. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/proguard-rules.pro

    # class:
    #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
    #   public *;
    #}
    
    # Uncomment this to preserve the line number information for
    # debugging stack traces.
    #-keepattributes SourceFile,LineNumberTable
    
    # If you keep the line number information, uncomment this to
    # hide the original source file name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 751 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_cov.txt

    # it is _extremely_ unlikely that the fuzzer would produce this particular
    # input in any reasonable amount of time.
    
    [short] skip
    [!fuzz-instrumented] skip
    env GOCACHE=$WORK/cache
    
    # TODO(#51484): enabled debugging info to help diagnose a deadlock in the fuzzer
    env GODEBUG=fuzzdebug=1
    ! go test -fuzz=FuzzCov -v
    ! stderr 'cov instrumentation working'
    
    -- go.mod --
    module test
    
    -- cov_test.go --
    package cov
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 787 bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue51339.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is tested when running "go test -run Manual"
    // without source arguments. Use for one-off debugging.
    
    package p
    
    type T[P any, B *P] struct{}
    
    func (T /* ERROR "cannot use generic type" */) m0() {}
    
    // TODO(rfindley): eliminate the duplicate errors here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 722 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/test/InternalDebugOptions.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol.test;
    
    /**
     * Preferences for test debugging.
     *
     * DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.
     *
     * @since 5.6
     */
    public interface InternalDebugOptions {
        boolean isDebugMode();
        int getPort();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 895 bytes
    - Viewed (0)
Back to top