Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for ababcd (0.07 sec)

  1. src/cmd/internal/obj/arm/a.out.go

    	ANMULAD
    	AMULSF
    	AMULSD
    	ANMULSF
    	ANMULSD
    	AFMULAF
    	AFMULAD
    	AFNMULAF
    	AFNMULAD
    	AFMULSF
    	AFMULSD
    	AFNMULSF
    	AFNMULSD
    	ADIVF
    	ADIVD
    	ASQRTF
    	ASQRTD
    	AABSF
    	AABSD
    	ANEGF
    	ANEGD
    
    	ASRL
    	ASRA
    	ASLL
    	AMULU
    	ADIVU
    	AMUL
    	AMMUL
    	ADIV
    	AMOD
    	AMODU
    	ADIVHW
    	ADIVUHW
    
    	AMOVB
    	AMOVBS
    	AMOVBU
    	AMOVH
    	AMOVHS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  2. test/typeparam/index2.go

    }
    
    func test[T comparable](got, want T) {
    	if got != want {
    		panic(fmt.Sprintf("got %v, want %v", got, want))
    	}
    }
    
    func main() {
    	x := make([]int64, 4)
    	x[3] = 2
    	y := [5]int64{1, 2, 3, 4, 5}
    	z := "abcd"
    	w := make([]byte, 4)
    	w[3] = 5
    	v := make(map[int]int64)
    	v[3] = 18
    
    	test(Index1(x), int64(2))
    	test(Index1(y), int64(4))
    	test(Index2(z), byte(100))
    	test(Index2(w), byte(5))
    	test(Index2a(w), byte(5))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    [
    	uuid(12345778-1234-abcd-ef00-0123456789ac),
    	version(1.0)
    ]
    interface samr
    {
    	import "../rpc.idl";
    	import "lsarpc.idl";
    
    	typedef [v1_enum] enum {
    		ACB_DISABLED               = 0x00000001, /* 1 = User account disabled */
    		ACB_HOMDIRREQ              = 0x00000002, /* 1 = Home directory required */
    		ACB_PWNOTREQ               = 0x00000004, /* 1 = User password not required */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.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. 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)
Back to top