Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for th2 (0.03 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/tsan15.go

    	while (1) {
    		int r = pthread_kill(th, SIGWINCH);
    		if (r < 0)
    			break;
    	}
    	return 0;
    }
    
    static void foo() {
    	pthread_t *th = malloc(sizeof(pthread_t));
    	pthread_t th2;
    	pthread_create(th, 0, thr, 0);
    	pthread_create(&th2, 0, sendthr, th);
    	pthread_join(*th, 0);
    }
    */
    import "C"
    
    import (
    	"time"
    )
    
    //export go_callback
    func go_callback() {}
    
    func main() {
    	go func() {
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 21:14:49 UTC 2024
    - 968 bytes
    - Viewed (0)
  2. src/math/big/calibrate_test.go

    			th1 = th
    			fmt.Print("  break-even point")
    		}
    
    		// determine diminishing return
    		if 0 < delta && delta < deltaOld && th2 < 0 {
    			th2 = th
    			fmt.Print("  diminishing return")
    		}
    		deltaOld = delta
    
    		fmt.Println()
    
    		// trigger counter
    		if th1 >= 0 && th2 >= 0 && count < 0 {
    			count = 10 // this many extra measurements after we got both thresholds
    		}
    
    		th++
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/SessionTest.java

            try ( SmbTreeHandleInternal th1 = (SmbTreeHandleInternal) ( (SmbFile) f1 ).getTreeHandle();
                  SmbTreeHandleInternal th2 = (SmbTreeHandleInternal) ( (SmbFile) f2 ).getTreeHandle();
                  SmbSessionInternal sess1 = th1.getSession().unwrap(SmbSessionInternal.class);
                  SmbSessionInternal sess2 = th2.getSession().unwrap(SmbSessionInternal.class);
                  SmbTransport t1 = sess1.getTransport();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    func CheckRecord(p RecordProof, t int64, th Hash, n int64, h Hash) error {
    	if t < 0 || n < 0 || n >= t {
    		return fmt.Errorf("tlog: invalid inputs in CheckRecord")
    	}
    	th2, err := runRecordProof(p, 0, t, n, h)
    	if err != nil {
    		return err
    	}
    	if th2 == th {
    		return nil
    	}
    	return errProofFailed
    }
    
    // runRecordProof runs the proof p that leaf n is contained in the subtree with leaves [lo, hi).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

                        if ( this.fileLocator.getType() == TYPE_SHARE ) {
                            // treeConnect is good enough, but we need to do this after resolving DFS
                            try ( SmbTreeHandleImpl th2 = ensureTreeConnected() ) {}
                        }
                        else {
                            queryPath(th, this.fileLocator.getUNCPath(), FileInformation.FILE_BASIC_INFO);
                        }
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. src/compress/flate/testdata/huffman-rand-max.in

    b��~���V�1�@�t���|"�!9߽ay$"������h1=�5��b�r��_��rS��^�f�h#�,:X����~�>�����͏r�φ
    ��S*(�:�}��|[�FM>-̟B���b��#D�ʓ�sg�H?�\b�X#T$.2w�=j� ���PT_�T�/5�5��4���PxR��*B.�UN���%x{y5_I�#T�%��cC��"GK���{��w�������h&�&˼��K�4�!�e��B���Þ2��C��m�.s�E:�m��朎B&��'��,�x�'q�m_	Ŏ�Ft�P����V>�Fo�S��8G�(:���z<����F�8�b��a�A�����O��X!��
    M����a���3vw1FN�	۔�e��%�Z�ly���&��g��,,�译t��}!p��Ț���>يNI�~2�T���:�ɘ��0�F������/9"z���É�
    W���Su�%;{B�A�^i��?]��f�Z�y...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
Back to top