Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for nid (0.02 sec)

  1. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  2. src/net/http/cookie_test.go

    }{
    	{
    		Header{"Set-Cookie": {"Cookie-1=v$1"}},
    		[]*Cookie{{Name: "Cookie-1", Value: "v$1", Raw: "Cookie-1=v$1"}},
    	},
    	{
    		Header{"Set-Cookie": {"NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.google.ch; HttpOnly"}},
    		[]*Cookie{{
    			Name:       "NID",
    			Value:      "99=YsDT5i3E-CXax-",
    			Path:       "/",
    			Domain:     ".google.ch",
    			HttpOnly:   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/ecdh.go

    func NewPublicKeyECDH(curve string, bytes []byte) (*PublicKeyECDH, error) {
    	if len(bytes) < 1 {
    		return nil, errors.New("NewPublicKeyECDH: missing key")
    	}
    
    	nid, err := curveNID(curve)
    	if err != nil {
    		return nil, err
    	}
    
    	group := C._goboringcrypto_EC_GROUP_new_by_curve_name(nid)
    	if group == nil {
    		return nil, fail("EC_GROUP_new_by_curve_name")
    	}
    	defer C._goboringcrypto_EC_GROUP_free(group)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/ecdsa.go

    	// call returns.
    	runtime.SetFinalizer(k, (*PublicKeyECDSA).finalize)
    	return k, nil
    }
    
    func newECKey(curve string, X, Y BigInt) (*C.GO_EC_KEY, error) {
    	nid, err := curveNID(curve)
    	if err != nil {
    		return nil, err
    	}
    	key := C._goboringcrypto_EC_KEY_new_by_curve_name(nid)
    	if key == nil {
    		return nil, fail("EC_KEY_new_by_curve_name")
    	}
    	group := C._goboringcrypto_EC_KEY_get0_group(key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                            request.nameTrnId = getNextNameTrnId();
                            nid = new Integer( request.nameTrnId );
    
                            out.setAddress( request.addr );
                            out.setLength( request.writeWireFormat( snd_buf, 0 ));
                            response.received = false;
    
                            responseTable.put( nid, response );
                            ensureOpen( timeout + 1000 );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/rsa.go

    	if md == nil {
    		return nil, errors.New("crypto/rsa: unsupported hash function: " + strconv.Itoa(int(h)))
    	}
    	nid := C._goboringcrypto_EVP_MD_type(md)
    	var out []byte
    	var outLen C.uint
    	if priv.withKey(func(key *C.GO_RSA) C.int {
    		out = make([]byte, C._goboringcrypto_RSA_size(key))
    		return C._goboringcrypto_RSA_sign(nid, base(hashed), C.uint(len(hashed)),
    			base(out), &outLen, key)
    	}) == 0 {
    		return nil, fail("RSA_sign")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/internal/trace/oldtrace.go

    		if err := evt.strings.insert(id, s); err != nil && addErr == nil {
    			addErr = err
    		}
    	}
    	for id, s := range pr.InlineStrings {
    		nid := max + 1 + uint64(id)
    		it.inlineToStringID = append(it.inlineToStringID, nid)
    		add(stringID(nid), s)
    	}
    	max += uint64(len(pr.InlineStrings))
    	pr.InlineStrings = nil
    
    	// Add strings that the converter emits explicitly.
    	if max+uint64(sLast) < max {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

                    "id 'noop' version 'bar'",
                    "id('noop').\nversion 'bar'",
                    "id('java');id('noop')",
                    "id('java')\nid('noop')",
                    "id('noop').version('bar');id('java')",
                    "id('noop').version('bar')\nid('java')",
                    "id 'noop' apply false",
                    "id('noop').apply(false)",
                    "id('noop').apply(false);id('java')",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                            nid = new Integer(request.nameTrnId);
    
                            this.out.setAddress(request.addr);
                            this.out.setLength(request.writeWireFormat(this.snd_buf, 0));
                            response.received = false;
    
                            this.responseTable.put(nid, response);
                            ensureOpen(timeout + 1000);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/goboringcrypto.h

    // #include <openssl/crypto.h>
    int _goboringcrypto_FIPS_mode(void);
    void* _goboringcrypto_OPENSSL_malloc(size_t);
    
    // #include <openssl/rand.h>
    int _goboringcrypto_RAND_bytes(uint8_t*, size_t);
    
    // #include <openssl/nid.h>
    enum {
    	GO_NID_md5_sha1 = 114,
    
    	GO_NID_secp224r1 = 713,
    	GO_NID_X9_62_prime256v1 = 415,
    	GO_NID_secp384r1 = 715,
    	GO_NID_secp521r1 = 716,
    
    	GO_NID_sha224 = 675,
    	GO_NID_sha256 = 672,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top