Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 595 for erfc (0.07 sec)

  1. src/main/java/jcifs/smb1/util/HMACT64.java

    /* HMACT64 keyed hashing algorithm
     * Copyright (C) 2003 "Eric Glass" <jcifs at samba dot org>
     *
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     *
     * This library is distributed in the hope that it will be useful,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/HMACT64.java

    /* HMACT64 keyed hashing algorithm
     * Copyright (C) 2003 "Eric Glass" <jcifs at samba dot org>
     *
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     *
     * This library is distributed in the hope that it will be useful,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  3. src/encoding/base64/base64_test.go

    	d := NewDecoder(StdEncoding, &faultInjectReader{
    		source: "VHdhcyBicmlsbGlnLCBhbmQgdGhlIHNsaXRoeSB0b3Zlcw==", // twas brillig...
    		nextc:  next,
    	})
    	errc := make(chan error, 1)
    	go func() {
    		_, err := io.ReadAll(d)
    		errc <- err
    	}()
    	select {
    	case err := <-errc:
    		if err != wantErr {
    			t.Errorf("got error %v; want %v", err, wantErr)
    		}
    	case <-time.After(5 * time.Second):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. src/net/sendfile_test.go

    	ln := newLocalListener(t, "tcp")
    	defer ln.Close()
    
    	errc := make(chan error, 1)
    	go func(ln Listener) {
    		// Wait for a connection.
    		conn, err := ln.Accept()
    		if err != nil {
    			errc <- err
    			close(errc)
    			return
    		}
    
    		go func() {
    			defer close(errc)
    			defer conn.Close()
    
    			f, err := os.Open(newton)
    			if err != nil {
    				errc <- err
    				return
    			}
    			defer f.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/net/http/status.go

    	StatusResetContent         = 205 // RFC 9110, 15.3.6
    	StatusPartialContent       = 206 // RFC 9110, 15.3.7
    	StatusMultiStatus          = 207 // RFC 4918, 11.1
    	StatusAlreadyReported      = 208 // RFC 5842, 7.1
    	StatusIMUsed               = 226 // RFC 3229, 10.4.1
    
    	StatusMultipleChoices   = 300 // RFC 9110, 15.4.1
    	StatusMovedPermanently  = 301 // RFC 9110, 15.4.2
    	StatusFound             = 302 // RFC 9110, 15.4.3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. src/cmd/internal/browser/browser.go

    // If the command runs within the timeout, it's deemed successful if it exited cleanly.
    func appearsSuccessful(cmd *exec.Cmd, timeout time.Duration) bool {
    	errc := make(chan error, 1)
    	go func() {
    		errc <- cmd.Wait()
    	}()
    
    	select {
    	case <-time.After(timeout):
    		return true
    	case err := <-errc:
    		return err == nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. src/net/net_test.go

    	t.Helper()
    	ln := newLocalListener(t, "tcp")
    	defer ln.Close()
    	errc := make(chan error, 2)
    	go func() {
    		c1, err := ln.Accept()
    		if err != nil {
    			errc <- err
    			return
    		}
    		err = peer1(c1.(*TCPConn))
    		c1.Close()
    		errc <- err
    	}()
    	go func() {
    		c2, err := Dial("tcp", ln.Addr().String())
    		if err != nil {
    			errc <- err
    			return
    		}
    		err = peer2(c2.(*TCPConn))
    		c2.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/mime/grammar.go

    package mime
    
    import (
    	"strings"
    )
    
    // isTSpecial reports whether rune is in 'tspecials' as defined by RFC
    // 1521 and RFC 2045.
    func isTSpecial(r rune) bool {
    	return strings.ContainsRune(`()<>@,;:\"/[]?=`, r)
    }
    
    // isTokenChar reports whether rune is in 'token' as defined by RFC
    // 1521 and RFC 2045.
    func isTokenChar(r rune) bool {
    	// token := 1*<any (US-ASCII) CHAR except SPACE, CTLs,
    	//             or tspecials>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 01:06:05 UTC 2016
    - 828 bytes
    - Viewed (0)
  9. src/net/file_unix_test.go

    	if !testableNetwork("unix") {
    		t.Skipf("skipping: unix sockets not supported")
    	}
    
    	ls := newLocalServer(t, "unix")
    	defer ls.teardown()
    
    	errc := make(chan error, 1)
    	done := make(chan bool)
    	handler := func(ls *localServer, ln Listener) {
    		server, err := ln.Accept()
    		errc <- err
    		if err != nil {
    			return
    		}
    		defer server.Close()
    		<-done
    	}
    	if err := ls.buildup(handler); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 16:48:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/LICENSE

     *
     * This product includes cryptographic software written by Eric Young
     * (******@****.***).  This product includes software written by Tim
     * Hudson (******@****.***).
     *
     */
    
     Original SSLeay License
     -----------------------
    
    /* Copyright (C) 1995-1998 Eric Young (******@****.***)
     * All rights reserved.
     *
     * This package is an SSL implementation written
     * by Eric Young (******@****.***).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top