Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for epstest (0.21 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	// The Poly1305 algorithm requires that a 1 bit be appended to
    	// each message block. If the final block is less than 16 bytes
    	// long then it is easiest to insert the 1 before the message
    	// block is split into 26-bit limbs. If, on the other hand, the
    	// final message block is 16 bytes long then we append the 1 bit
    	// after expansion as normal.
    	MOVBZ  $1, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/AllTests.java

     */
    @RunWith ( Suite.class )
    @SuiteClasses ( {
        ContextConfigTest.class, PACTest.class, NtlmTest.class, FileLocationTest.class, SessionTest.class, KerberosTest.class, TimeoutTest.class,
        SidTest.class, NamingTest.class, DfsTest.class, FileAttributesTest.class, EnumTest.class, PipeTest.class, FileOperationsTest.class,
        WatchTest.class, ReadWriteTest.class, ConcurrencyTest.class, RandomAccessFileTest.class, OplockTests.class
    } )
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/sds/sdsservice_test.go

    	"google.golang.org/protobuf/types/known/durationpb"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/log"
    	ca2 "istio.io/istio/pkg/security"
    )
    
    var (
    	fakeRootCert         = []byte{0o0}
    	fakeCertificateChain = []byte{0o1}
    	fakePrivateKey       = []byte{0o2}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner.go

    	logger := klog.FromContext(ctx)
    
    	now := tc.clock.Now().UTC()
    	trackedSince, err := tc.latestPossibleTrackedSinceTime(ctx)
    	if err != nil {
    		logger.Error(err, "Getting lastest possible tracked_since time")
    		return
    	}
    
    	if now.Before(trackedSince.Add(tc.minimumSinceLastUsed)) {
    		// we haven't been tracking long enough
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/ResponseBody.kt

     * * `Response.body().bytes()`
     * * `Response.body().string()`
     *
     * There is no benefit to invoking multiple `close()` methods for the same response body.
     *
     * For synchronous calls, the easiest way to make sure a response body is closed is with a `try`
     * block. With this structure the compiler inserts an implicit `finally` clause that calls
     * [close()][Response.close] for you.
     *
     * ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

     * [HTTP Public Key Pinning (HPKP)][rfc_7469] or SHA-1 base64 hashes as in Chromium's
     * [static certificates][static_certificates].
     *
     * ## Setting up Certificate Pinning
     *
     * The easiest way to pin a host is turn on pinning with a broken configuration and read the
     * expected configuration when the connection fails. Be sure to do this on a trusted network, and
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. pkg/api/v1/persistentvolume/util_test.go

    		secretPaths.Insert(sets.List[string](collectSecretPaths(t, path, name, tp.Elem()))...)
    	case reflect.Struct:
    		// ObjectMeta should not have any field with the word "secret" in it;
    		// it contains cycles so it's easiest to just skip it.
    		if name == "ObjectMeta" {
    			break
    		}
    		for i := 0; i < tp.NumField(); i++ {
    			field := tp.Field(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/imports/build.go

    	// "foo_linux.go" is tagged but "linux.go" is not. This allows new operating
    	// systems, such as android, to arrive without breaking existing code with
    	// innocuous source code in "android.go". The easiest fix: cut everything
    	// in the name before the initial _.
    	i := strings.Index(name, "_")
    	if i < 0 {
    		return true
    	}
    	name = name[i:] // ignore everything before first _
    
    	l := strings.Split(name, "_")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

         --no-split-project     Disables option --split-project.
    
         --test-framework     Set the test framework to be used.
                              Available values are:
                                   cpptest
                                   junit
                                   junit-jupiter
                                   kotlintest
                                   scalatest
                                   spock
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. 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)
Back to top