Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for dialing (0.3 sec)

  1. pilot/pkg/bootstrap/server_test.go

    				// See https://www.mailgun.com/blog/http-2-cleartext-h2c-client-example-go/
    				// So http2.Transport doesn't complain the URL scheme isn't 'https'
    				AllowHTTP: true,
    				// Pretend we are dialing a TLS endpoint. (Note, we ignore the passed tls.Config)
    				DialTLSContext: func(_ context.Context, network, addr string, _ *tls.Config) (net.Conn, error) {
    					return net.Dial(network, addr)
    				},
    			},
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. cmd/erasure-healing.go

    const (
    	xMinIOHealing = ReservedMetadataPrefix + "healing"
    	xMinIODataMov = ReservedMetadataPrefix + "data-mov"
    )
    
    // SetHealing marks object (version) as being healed.
    // Note: this is to be used only from healObject
    func (fi *FileInfo) SetHealing() {
    	if fi.Metadata == nil {
    		fi.Metadata = make(map[string]string)
    	}
    	fi.Metadata[xMinIOHealing] = "true"
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  3. cmd/erasure-healing-common.go

    		meta.DataDir = latestMeta.DataDir
    		switch scanMode {
    		case madmin.HealDeepScan:
    			// disk has a valid xl.meta but may not have all the
    			// parts. This is considered an outdated disk, since
    			// it needs healing too.
    			verifyResp, verifyErr = onlineDisk.VerifyFile(ctx, bucket, object, meta)
    		default:
    			verifyResp, verifyErr = onlineDisk.CheckParts(ctx, bucket, object, meta)
    		}
    
    		for p := range latestMeta.Parts {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. cmd/erasure-healing-common_test.go

    Anis Eleuch <******@****.***> 1718034687 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    This is called _dependency locking_.
    
    It enables, amongst others, the following scenarios:
    
    * Companies dealing with multi repositories no longer need to rely on `-SNAPSHOT` or changing dependencies,
    which sometimes result in cascading failures when a dependency introduces a bug or incompatibility.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            //then there is something to be fixed. If you intentionally added new jars to the distribution and this is now failing please
            //accept my sincere apologies that you have to manually bump the numbers here.
            jarLibEntries.size() == libJarsCount
        }
    
        protected List<? extends ZipEntry> getLibZipEntries() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	//
    	// An API server that is fronted by an L7 load balancer that is set up
    	// to mitigate http2 attacks may opt to disable this protection to prevent
    	// unauthenticated clients from disabling connection reuse between the load
    	// balancer and the API server (many incoming connections could share the
    	// same backend connection).
    	//
    	// An API server that is on a private network may opt to disable this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. licenses/github.com/hashicorp/go-version/LICENSE

         rights to its Contributions conveyed by this License.
    
    2.6. Fair Use
    
         This License is not intended to limit any rights You have under applicable
         copyright doctrines of fair use, fair dealing, or other equivalents.
    
    2.7. Conditions
    
         Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in
         Section 2.1.
    
    
    3. Responsibilities
    
    3.1. Distribution of Source Form
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    			return cluster.Cluster_EDS
    		}
    		return cluster.Cluster_ORIGINAL_DST
    	default:
    		return cluster.Cluster_EDS
    	}
    }
    
    // ClusterMode defines whether the cluster is being built for SNI-DNATing (sni passthrough) or not
    type ClusterMode string
    
    const (
    	// SniDnatClusterMode indicates cluster is being built for SNI dnat mode
    	SniDnatClusterMode ClusterMode = "sni-dnat"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. cmd/object-api-utils.go

    			if err != nil {
    				return -1, errObjectTampered
    			}
    			return size, nil
    		}
    		return o.DecryptedSize()
    	}
    
    	return o.Size, nil
    }
    
    // Disabling compression for encrypted enabled requests.
    // Using compression and encryption together enables room for side channel attacks.
    // Eliminate non-compressible objects by extensions/content-types.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top