Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for ababcd (0.26 sec)

  1. docs/sts/casdoor.md

    Casdoor is a UI-first centralized authentication / Single-Sign-On (SSO) platform supporting OAuth 2.0, OIDC and SAML, integrated with Casbin RBAC and ABAC permission management. This document covers configuring Casdoor identity provider support with MinIO.
    
    ## Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/types.go

    }
    
    // CgroupName is the abstract name of a cgroup prior to any driver specific conversion.
    // It is specified as a list of strings from its individual components, such as:
    // {"kubepods", "burstable", "pod1234-abcd-5678-efgh"}
    type CgroupName []string
    
    // CgroupConfig holds the cgroup configuration information.
    // This is common object which is used to specify
    // cgroup information to both systemd and raw cgroup fs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/a.out.go

    	ACSINV
    	ACSINVW
    	ACSNEG
    	ACSNEGW
    	ADC
    	ADCPS1
    	ADCPS2
    	ADCPS3
    	ADMB
    	ADRPS
    	ADSB
    	ADWORD
    	AEON
    	AEONW
    	AEOR
    	AEORW
    	AERET
    	AEXTR
    	AEXTRW
    	AFABSD
    	AFABSS
    	AFADDD
    	AFADDS
    	AFCCMPD
    	AFCCMPED
    	AFCCMPES
    	AFCCMPS
    	AFCMPD
    	AFCMPED
    	AFCMPES
    	AFCMPS
    	AFCSELD
    	AFCSELS
    	AFCVTDH
    	AFCVTDS
    	AFCVTHD
    	AFCVTHS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  4. internal/ioutil/ioutil_test.go

    		t.Error("DeadlineWriter shouldn't be successful - should return context.DeadlineExceeded")
    	}
    	w.Close()
    	w = NewDeadlineWriter(&sleepWriter{timeout: 100 * time.Millisecond}, 600*time.Millisecond)
    	n, err := w.Write([]byte("abcd"))
    	w.Close()
    	if err != nil {
    		t.Errorf("DeadlineWriter should succeed but failed with %s", err)
    	}
    	if n != 4 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/crypto/sha512/sha512_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  6. src/encoding/base64/base64_test.go

    	s, err := StdEncoding.DecodeString("YWJjZA=====")
    	want := CorruptInputError(8)
    	if !reflect.DeepEqual(want, err) {
    		t.Errorf("Error = %v; want CorruptInputError(8)", err)
    	}
    	if string(s) != "abcd" {
    		t.Errorf("DecodeString = %q; want abcd", s)
    	}
    }
    
    func TestDecoderIssue15656(t *testing.T) {
    	_, err := StdEncoding.Strict().DecodeString("WvLTlMrX9NpYDQlEIFlnDB==")
    	want := CorruptInputError(22)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. src/unicode/utf8/utf8_test.go

    }
    
    var surrogateMap = []Utf8Map{
    	{0xd800, "\xed\xa0\x80"}, // surrogate min decodes to (RuneError, 1)
    	{0xdfff, "\xed\xbf\xbf"}, // surrogate max decodes to (RuneError, 1)
    }
    
    var testStrings = []string{
    	"",
    	"abcd",
    	"☺☻☹",
    	"日a本b語ç日ð本Ê語þ日¥本¼語i日©",
    	"日a本b語ç日ð本Ê語þ日¥本¼語i日©日a本b語ç日ð本Ê語þ日¥本¼語i日©日a本b語ç日ð本Ê語þ日¥本¼語i日©",
    	"\x80\x80\x80\x80",
    }
    
    func TestFullRune(t *testing.T) {
    	for _, m := range utf8map {
    		b := []byte(m.str)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  8. src/strings/strings_test.go

    	{"xab"[:2], "ab", -1},
    	{"", "abc", -1},
    	{"xbc", "abc", -1},
    	{"abc", "abc", 0},
    	{"xabc", "abc", 1},
    	{"xabc"[:3], "abc", -1},
    	{"xabxc", "abc", -1},
    	{"", "abcd", -1},
    	{"xbcd", "abcd", -1},
    	{"abcd", "abcd", 0},
    	{"xabcd", "abcd", 1},
    	{"xyabcd"[:5], "abcd", -1},
    	{"xbcqq", "abcqq", -1},
    	{"abcqq", "abcqq", 0},
    	{"xabcqq", "abcqq", 1},
    	{"xyabcqq"[:6], "abcqq", -1},
    	{"xabxcqq", "abcqq", -1},
    	{"xabcqxq", "abcqq", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. src/go/scanner/scanner_test.go

    		{token.IMAG, "0xf00i", "0xf00i", ""},
    
    		// hexadecimal floats
    		{token.FLOAT, "0x0p0", "0x0p0", ""},
    		{token.FLOAT, "0x12efp-123", "0x12efp-123", ""},
    		{token.FLOAT, "0xABCD.p+0", "0xABCD.p+0", ""},
    		{token.FLOAT, "0x.0189P-0", "0x.0189P-0", ""},
    		{token.FLOAT, "0x1.ffffp+1023", "0x1.ffffp+1023", ""},
    
    		{token.FLOAT, "0x.", "0x.", "hexadecimal literal has no digits"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  10. src/crypto/sha256/sha256_test.go

    	{"17eb7d40f0356f8598e89eafad5f6c759b1f822975d9c9b737c8a517", "abcdefgh", "sha\x02\xc1\x05\x9e\xd86|\xd5\a0p\xdd\x17\xf7\x0eY9\xff\xc0\v1hX\x15\x11d\xf9\x8f\xa7\xbe\xfaO\xa4abcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top