Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for gids (0.55 sec)

  1. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

            Smb2SigningDigest dgst = getDigest();
            if ( dgst != null && !isAsync() && ( getConfig().isRequireSecureNegotiate() || getErrorCode() == NtStatus.NT_STATUS_OK ) ) {
                // TODO: SMB2 - do we need to check the MIDs?
                // We only read what we were waiting for, so first guess would be no.
                boolean verify = dgst.verify(buffer, i, size, 0, this);
                this.verifyFailed = verify;
                return !verify;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    The plugin also integrates with <<test_kit.adoc#test_kit,TestKit>>, a library that aids in writing and executing functional tests for plugin code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. src/runtime/trace/trace.go

    //	   trace.WithRegion(ctx, "steamMilk", steamMilk)
    //	   trace.WithRegion(ctx, "extractCoffee", extractCoffee)
    //	   trace.WithRegion(ctx, "mixMilkCoffee", mixMilkCoffee)
    //	})
    //
    // A task is a higher-level component that aids tracing of logical
    // operations such as an RPC request, an HTTP request, or an
    // interesting local operation which may require multiple goroutines
    // working together. Since tasks can involve multiple goroutines,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/crypto/x509/oid.go

    		}
    	}
    	return b.String()
    }
    
    func (oid OID) toASN1OID() (asn1.ObjectIdentifier, bool) {
    	out := make([]int, 0, len(oid.der)+1)
    
    	const (
    		valSize         = 31 // amount of usable bits of val for OIDs.
    		bitsPerByte     = 7
    		maxValSafeShift = (1 << (valSize - bitsPerByte)) - 1
    	)
    
    	val := 0
    
    	for _, v := range oid.der {
    		if val > maxValSafeShift {
    			return nil, false
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top