Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for sigset (0.12 sec)

  1. src/runtime/os_plan9.go

    	// Initialize stack for handling strings from the
    	// errstr system call, as used in package syscall.
    	mp.errstr = (*byte)(mallocgc(_ERRMAX, nil, true))
    }
    
    func sigsave(p *sigset) {
    }
    
    func msigrestore(sigmask sigset) {
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func clearSignalHandlers() {
    }
    
    func sigblock(exiting bool) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin.go

    	KeepAlive(new)
    	KeepAlive(old)
    }
    func sigaction_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func sigprocmask(how uint32, new *sigset, old *sigset) {
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(sigprocmask_trampoline)), unsafe.Pointer(&how))
    	KeepAlive(new)
    	KeepAlive(old)
    }
    func sigprocmask_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/runtime/signal_unix.go

    // after g has been cleared.
    //
    //go:nosplit
    //go:nowritebarrierrec
    func msigrestore(sigmask sigset) {
    	sigprocmask(_SIG_SETMASK, &sigmask, nil)
    }
    
    // sigsetAllExiting is used by sigblock(true) when a thread is
    // exiting.
    var sigsetAllExiting = func() sigset {
    	res := sigset_all
    
    	// Apply GOOS-specific overrides here, rather than in osinit,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	procid        uint64            // for debuggers, but offset not hard-coded
    	gsignal       *g                // signal-handling g
    	goSigStack    gsignalStack      // Go-allocated signal handling stack
    	sigmask       sigset            // storage for saved signal mask
    	tls           [tlsSlots]uintptr // thread-local storage (for x86 extern register)
    	mstartfn      func()
    	curg          *g       // current running goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

            }
        }
    
        protected void processAllowedSIDs(final SmbFile file, final SID sid, final Set<SID> sidSet) {
            if (logger.isDebugEnabled()) {
                logger.debug("SID:{}", sid);
            }
            final int type = sid.getType();
            sidSet.add(sid);
            if (type == SID.SID_TYPE_DOM_GRP || type == SID.SID_TYPE_ALIAS) {
                try {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. 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)
  7. src/crypto/rsa/rsa.go

    func mgf1XOR(out []byte, hash hash.Hash, seed []byte) {
    	var counter [4]byte
    	var digest []byte
    
    	done := 0
    	for done < len(out) {
    		hash.Write(seed)
    		hash.Write(counter[0:4])
    		digest = hash.Sum(digest[:0])
    		hash.Reset()
    
    		for i := 0; i < len(digest) && done < len(out); i++ {
    			out[done] ^= digest[i]
    			done++
    		}
    		incCounter(&counter)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/crypto/tls/key_agreement.go

    	if sigType == signatureEd25519 {
    		var signed []byte
    		for _, slice := range slices {
    			signed = append(signed, slice...)
    		}
    		return signed
    	}
    	if version >= VersionTLS12 {
    		h := hashFunc.New()
    		for _, slice := range slices {
    			h.Write(slice)
    		}
    		digest := h.Sum(nil)
    		return digest
    	}
    	if sigType == signatureECDSA {
    		return sha1Hash(slices)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa.go

    	return subtle.ConstantTimeCompare(a.Bytes(), b.Bytes()) == 1
    }
    
    // Sign signs digest with priv, reading randomness from rand. The opts argument
    // is not currently used but, in keeping with the crypto.Signer interface,
    // should be the hash function used to digest the message.
    //
    // This method implements crypto.Signer, which is an interface to support keys
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            module.moduleMetadata.verifyChecksums()
            module.rootMetaData.verifyChecksums()
            module.rootMetaData.versions == ["2"]
    
            where:
            authScheme << [AuthScheme.BASIC, AuthScheme.DIGEST, AuthScheme.NTLM]
        }
    
        def "reports failure publishing with wrong credentials using #authScheme"() {
            given:
            PasswordCredentials credentials = new DefaultPasswordCredentials('wrong', 'wrong')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top