Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 132 for epstest (0.12 sec)

  1. src/net/http/response_test.go

    	"reflect"
    	"regexp"
    	"strings"
    	"testing"
    )
    
    type respTest struct {
    	Raw  string
    	Resp Response
    	Body string
    }
    
    func dummyReq(method string) *Request {
    	return &Request{Method: method}
    }
    
    func dummyReq11(method string) *Request {
    	return &Request{Method: method, Proto: "HTTP/1.1", ProtoMajor: 1, ProtoMinor: 1}
    }
    
    var respTests = []respTest{
    	// Unchunked response without Content-Length.
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    1. Clean the cache directory to avoid any hits from previous builds (`rm -rf $GRADLE_USER_HOME/caches/build-cache-*`)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. kotlin-js-store/yarn.lock

      integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
    
    fastest-levenshtein@^1.0.12:
      version "1.0.12"
      resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz#9990f7d3a88cc5a9ffd1f1745745251700d497e2"
      integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/compute.go

    		}
    		klog.Warningf("Different API server versions in the cluster were discovered: %v. Please upgrade your control plane"+
    			" nodes to the same version of Kubernetes", strings.Join(verMsg, ", "))
    	}
    
    	// Get the lastest cluster version
    	clusterVersion, err := getLatestClusterVersion(kubeAPIServerVersions)
    	if err != nil {
    		return upgrades, err
    	}
    	clusterVersionStr := clusterVersion.String()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/UnsignedBytes.java

          /*
           * The following static final fields exist for performance reasons.
           *
           * In UnsignedBytesBenchmark, accessing the following objects via static final fields is the
           * fastest (more than twice as fast as the Java implementation, vs ~1.5x with non-final static
           * fields, on x86_32) under the Hotspot server compiler. The reason is obviously that the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            project.mainComponent.baseName == 'app'
            project.testComponent instanceof CppTestSuite
            project.testComponent.name == 'test'
            project.testComponent.baseName == 'appTest'
            project.testComponent.binaries[0].compilationDetails.userHeaderSearchPaths == [file('src/test/headers'), file('src/main/headers')]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    For testing with the build cache, the build cache directory should be cleaned between tests.
    The easiest way to accomplish this is to configure the local build cache to use a temporary directory.
    
    === Example: Clean build cache between tests
    
    [source,groovy,indent=0]
    .BuildLogicFunctionalTest.groovy
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pilot/test/xds/fake.go

    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pilot/pkg/xds/endpoints"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/adsc"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/collections"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent_test.go

    			resp = xdsc.RequestResponseAck(t, nil)
    		})
    	}, retry.Timeout(time.Second*15), retry.Delay(time.Millisecond*200))
    
    	sdsStreams := map[string]*xds.AdsTest{}
    	gotKeys := []string{}
    	for _, res := range xdstest.ExtractSecretResources(t, resp.Resources) {
    		sds := xds.NewSdsTest(t, setupDownstreamConnectionUDS(t, security.WorkloadIdentitySocketPath)).
    			WithMetadata(meta).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    //
    // However the level of tolerance to skew rate can be configured by setting
    // RenewDeadline and LeaseDuration appropriately. The tolerance expressed as a
    // maximum tolerated ratio of time passed on the fastest node to time passed on
    // the slowest node can be approximately achieved with a configuration that sets
    // the same ratio of LeaseDuration to RenewDeadline. For example if a user wanted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top