Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TestStd (0.11 sec)

  1. src/go/doc/comment/std_test.go

    // license that can be found in the LICENSE file.
    
    package comment
    
    import (
    	"internal/diff"
    	"internal/testenv"
    	"slices"
    	"strings"
    	"testing"
    )
    
    func TestStd(t *testing.T) {
    	out, err := testenv.Command(t, testenv.GoToolPath(t), "list", "std").CombinedOutput()
    	if err != nil {
    		t.Fatalf("%v\n%s", err, out)
    	}
    
    	var list []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 825 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testshared/shared_test.go

    	globalSkip(t)
    	goCmd(t, "install", "-buildmode=shared", "-linkshared", "./issue62277/p")
    	goCmd(t, "test", "-linkshared", "./issue62277")
    }
    
    // Test that we can build std in shared mode.
    func TestStd(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skip in short mode")
    	}
    	globalSkip(t)
    	t.Parallel()
    	tmpDir := t.TempDir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/sourceCopyright.dfprop

    # sourceCopyright: (NotRequired - Default '')
    #
    # The copyright for all class sources.
    # This property is NOT map style.
    # You should specify before your first generating.
    #
    #/*
    # * Copyright(c) DBFlute TestCo.,TestLtd. All Rights Reserved.
    # */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 344 bytes
    - Viewed (0)
  4. src/crypto/aes/aes_test.go

    				t.Fatalf("te[%d][%d] = %#x, want %#x", j, i, x, w)
    			}
    			w = w<<24 | w>>8
    		}
    	}
    }
    
    // Test that decryption tables are correct.
    // (Can adapt this code to generate them too.)
    func TestTd(t *testing.T) {
    	for i := 0; i < 256; i++ {
    		s := uint32(sbox1[i])
    		s9 := mul(s, 0x9)
    		sb := mul(s, 0xb)
    		sd := mul(s, 0xd)
    		se := mul(s, 0xe)
    		w := se<<24 | s9<<16 | sd<<8 | sb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top