Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 288 for Insecure (0.13 sec)

  1. docs/site-replication/run-ssec-object-replication.sh

    count1=$(./mc ls minio1/test-bucket/plainfile --insecure | wc -l)
    if [ "${count1}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/plainfile not found"
    	exit_1
    fi
    count2=$(./mc ls minio1/test-bucket/encrypted --insecure | wc -l)
    if [ "${count2}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/encrypted not found"
    	exit_1
    fi
    count3=$(./mc ls minio1/test-bucket/defpartsize --insecure | wc -l)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. docs/site-replication/run-sse-kms-object-replication.sh

    ./mc cp /tmp/data/mpartobj minio1/test-bucket/mpartobj --enc-c "minio1/test-bucket/mpartobj=${TEST_MINIO_ENC_KEY}" --insecure
    ./mc cp /tmp/data/defpartsize minio1/test-bucket --insecure
    ./mc put /tmp/data/custpartsize minio1/test-bucket --insecure --part-size 50MiB
    sleep 120
    
    # List the objects from source site
    echo "Objects from source instance"
    ./mc ls minio1/test-bucket --insecure
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	}
    	if f.Insecure != nil {
    		flags.BoolVar(f.Insecure, flagInsecure, *f.Insecure, "If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure")
    	}
    	if f.CAFile != nil {
    		flags.StringVar(f.CAFile, flagCAFile, *f.CAFile, "Path to a cert file for the certificate authority")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. pkg/wasm/imagefetcher.go

    	PullSecret []byte
    	Insecure   bool
    }
    
    func (o *ImageFetcherOption) useDefaultKeyChain() bool {
    	return o.PullSecret == nil
    }
    
    func (o ImageFetcherOption) String() string {
    	if o.PullSecret == nil {
    		return fmt.Sprintf("{Insecure: %v}", o.Insecure)
    	}
    	return fmt.Sprintf("{Insecure: %v, PullSecret: <redacted>}", o.Insecure)
    }
    
    type ImageFetcher struct {
    	fetchOpts []remote.Option
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/dns/dns_test.go

               pods insecure
               upstream
               fallthrough in-addr.arpa ip6.arpa
               ttl 30
            }
            health
        }
    `,
    			expectedCorefileData: `.:53 {
        errors
        health {
           lameduck 5s
        }
        ready
        kubernetes cluster.local in-addr.arpa ip6.arpa {
           pods insecure
           fallthrough in-addr.arpa ip6.arpa
           ttl 30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

        def "insecureProtocolFail"() {
            expect:
            fails 'init', '--dsl', scriptDsl.id as String, '--insecure-protocol', InsecureProtocolOption.FAIL as String
            result.assertHasErrorOutput("Gradle found an insecure protocol in a repository definition. The current strategy for handling insecure URLs is to fail. " +
                insecureProtocolsLinks("options"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcgen_test.go

    			t.Error("Didn't resolve in time")
    		}
    	})
    
    	t.Run("gRPC-svc", func(t *testing.T) {
    		t.Run("gRPC-svc-tls", func(t *testing.T) {
    			// Replaces: insecure.NewCredentials
    			creds, err := xdscreds.NewServerCredentials(xdscreds.ServerOptions{FallbackCreds: insecure.NewCredentials()})
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			grpcOptions := []grpc.ServerOption{
    				grpc.Creds(creds),
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    [[sec:allow_insecure]]
    ==== The `--insecure-protocol` option
    This option is used to tell the conversion process how to handle converting Maven repositories located at insecure `http` URLs.  Insecure Repositories Set the
    link:{groovyDslPath}/org.gradle.buildinit.tasks.InitBuild.html#org.gradle.buildinit.tasks.InitBuild:getInsecureProtocol[--insecure-protocol] option.  The default value is `warn`.
    
    Available values are:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/discovery/token/token.go

    		return nil, err
    	}
    
    	// Validate the token in the cluster info
    	insecureKubeconfigBytes, err := validateClusterInfoToken(insecureClusterInfo, token)
    	if err != nil {
    		return nil, err
    	}
    
    	// Load the insecure config
    	insecureConfig, err := clientcmd.Load(insecureKubeconfigBytes)
    	if err != nil {
    		return nil, errors.Wrapf(err, "couldn't parse the kubeconfig file in the %s ConfigMap", bootstrapapi.ConfigMapClusterInfo)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. pkg/wasm/cache.go

    	var binaryFetcher func() ([]byte, error)
    	insecure := c.allowInsecure(u.Host)
    
    	ctx, cancel := context.WithTimeout(context.Background(), opts.RequestTimeout)
    	defer cancel()
    	switch u.Scheme {
    	case "http", "https":
    		// Download the Wasm module with http fetcher.
    		b, err = c.httpFetcher.Fetch(ctx, key.downloadURL, insecure)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top