Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for ababcd (0.09 sec)

  1. src/bufio/bufio_test.go

    	buf = NewReaderSize(dataAndEOFReader("abcd"), 32)
    	if s, err := buf.Peek(2); string(s) != "ab" || err != nil {
    		t.Errorf(`Peek(2) on "abcd", EOF = %q, %v; want "ab", nil`, string(s), err)
    	}
    	if s, err := buf.Peek(4); string(s) != "abcd" || err != nil {
    		t.Errorf(`Peek(4) on "abcd", EOF = %q, %v; want "abcd", nil`, string(s), err)
    	}
    	if n, err := buf.Read(p[0:5]); string(p[0:n]) != "abcd" || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  2. src/text/scanner/scanner_test.go

    		{Int, "0x", "0x", "hexadecimal literal has no digits"},
    		{Int, "0x1g", "0x1 g", ""},
    
    		// hexadecimal floats
    		{Float, "0x0p0", "0x0p0", ""},
    		{Float, "0x12efp-123", "0x12efp-123", ""},
    		{Float, "0xABCD.p+0", "0xABCD.p+0", ""},
    		{Float, "0x.0189P-0", "0x.0189P-0", ""},
    		{Float, "0x1.ffffp+1023", "0x1.ffffp+1023", ""},
    
    		{Float, "0x.", "0x.", "hexadecimal literal has no digits"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/cpu.go

    	// Pseudo-instructions.  These get translated by the assembler into other
    	// instructions, based on their operands.
    	ABEQZ
    	ABGEZ
    	ABGT
    	ABGTU
    	ABGTZ
    	ABLE
    	ABLEU
    	ABLEZ
    	ABLTZ
    	ABNEZ
    	AFABSD
    	AFABSS
    	AFNEGD
    	AFNEGS
    	AFNED
    	AFNES
    	AMOV
    	AMOVB
    	AMOVBU
    	AMOVF
    	AMOVD
    	AMOVH
    	AMOVHU
    	AMOVW
    	AMOVWU
    	ANEG
    	ANEGW
    	ANOT
    	ASEQZ
    	ASNEZ
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/regexp/onepass_test.go

    		}
    	}
    }
    
    var onePassTests = []struct {
    	re        string
    	isOnePass bool
    }{
    	{`^(?:a|(?:a*))$`, false},
    	{`^(?:(a)|(?:a*))$`, false},
    	{`^(?:(?:(?:.(?:$))?))$`, true},
    	{`^abcd$`, true},
    	{`^(?:(?:a{0,})*?)$`, false},
    	{`^(?:(?:a+)*)$`, true},
    	{`^(?:(?:a|(?:aa)))$`, true},
    	{`^(?:[^\s\S])$`, true},
    	{`^(?:(?:a{3,4}){0,})$`, false},
    	{`^(?:(?:(?:a*)+))$`, true},
    	{`^[a-c]+$`, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top