Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 461 for sigset (0.11 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

        }
    
    
        /**
         * @param digest
         *            the digest to set
         * @throws SmbException
         */
        private void setDigest ( SMBSigningDigest digest ) throws SmbException {
            if ( this.transport.isSMB2() ) {
                this.digest = digest;
            }
            else {
                this.transport.setDigest(digest);
            }
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  2. src/compress/zlib/writer.go

    // to w.
    func (z *Writer) Reset(w io.Writer) {
    	z.w = w
    	// z.level and z.dict left unchanged.
    	if z.compressor != nil {
    		z.compressor.Reset(w)
    	}
    	if z.digest != nil {
    		z.digest.Reset()
    	}
    	z.err = nil
    	z.scratch = [4]byte{}
    	z.wroteHeader = false
    }
    
    // writeHeader writes the ZLIB header.
    func (z *Writer) writeHeader() (err error) {
    	z.wroteHeader = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 18:51:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

     * <li>
     * Otherwise continue with disambiguation. Disambiguation iterates through the attributes and presents the different values to the {@link AttributeSelectionSchema}.
     * The schema can declare a subset of these values as preferred. Candidates whose value is not in that subset are rejected. If a single candidate remains after
     * disambiguating the requested attributes, this candidate is returned. Otherwise disambiguation continues with extra attributes.
     * </li>
     * <li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  4. src/os/signal/signal_test.go

    	}
    
    	testenv.MustHaveExec(t)
    
    	// Call Notify for SIGINT before starting the child process.
    	// That ensures that SIGINT is not ignored for the child.
    	// This is necessary because if SIGINT is ignored when a
    	// Go program starts, then it remains ignored, and closing
    	// the last notification channel for SIGINT will switch it
    	// back to being ignored. In that case the assumption of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  5. src/crypto/sha256/sha256block_s390x.s

    //go:build !purego
    
    #include "textflag.h"
    
    // func block(dig *digest, p []byte)
    TEXT ·block(SB), NOSPLIT|NOFRAME, $0-32
    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $2, R0                       // SHA-256 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
  6. src/crypto/sha512/sha512block_s390x.s

    //go:build !purego
    
    #include "textflag.h"
    
    // func block(dig *digest, p []byte)
    TEXT ·block(SB), NOSPLIT|NOFRAME, $0-32
    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $3, R0                       // SHA-512 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
  7. src/internal/zstd/xxhash_test.go

    		0x1032d841e824f998,
    	},
    }
    
    func TestXXHash(t *testing.T) {
    	var xh xxhash64
    	for i, test := range xxHashTests {
    		xh.reset()
    		xh.update([]byte(test.data))
    		if got := xh.digest(); got != test.hash {
    			t.Errorf("#%d: got %#x want %#x", i, got, test.hash)
    		}
    	}
    }
    
    func TestLargeXXHash(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping expensive test in short mode")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:34:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/runtime/defs3_linux.go

    Input to cgo -cdefs
    
    GOARCH=ppc64 cgo -cdefs defs_linux.go defs3_linux.go > defs_linux_ppc64.h
    */
    
    package runtime
    
    /*
    #define size_t __kernel_size_t
    #define sigset_t __sigset_t // rename the sigset_t here otherwise cgo will complain about "inconsistent definitions for C.sigset_t"
    #define	_SYS_TYPES_H	// avoid inclusion of sys/types.h
    #include <asm/ucontext.h>
    #include <asm-generic/fcntl.h>
    */
    import "C"
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. src/crypto/rsa/pss.go

    		return PSSSaltLengthAuto
    	}
    	return opts.SaltLength
    }
    
    var invalidSaltLenErr = errors.New("crypto/rsa: PSSOptions.SaltLength cannot be negative")
    
    // SignPSS calculates the signature of digest using PSS.
    //
    // digest must be the result of hashing the input message using the given hash
    // function. The opts argument may be nil, in which case sensible defaults are
    // used. If opts.Hash is set, it overrides hash.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/CommonServerMessageBlock.java

         * @param dst
         * @param dstIndex
         * @return message length
         */
        int encode ( byte[] dst, int dstIndex );
    
    
        /**
         * @param digest
         */
        void setDigest ( SMBSigningDigest digest );
    
    
        /**
         * @return the signing digest
         */
        SMBSigningDigest getDigest ();
    
    
        /**
         * @return the associated response
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.3K bytes
    - Viewed (0)
Back to top