Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for ASD (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/swagger_doc_generator_test.go

    */
    
    package runtime
    
    import (
    	"testing"
    )
    
    func TestFmtRawDoc(t *testing.T) {
    	tests := []struct {
    		t, expected string
    	}{
    		{"aaa\n  --- asd\n TODO: tooooodo\n toooodoooooo\n", "aaa"},
    		{"aaa\nasd\n TODO: tooooodo\nbbbb\n --- toooodoooooo\n", "aaa asd bbbb"},
    		{" TODO: tooooodo\n", ""},
    		{"Par1\n\nPar2\n\n", "Par1\\n\\nPar2"},
    		{"", ""},
    		{" ", ""},
    		{" \n", ""},
    		{" \n\n ", ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    				"defaultCPUSet": "1-3",
    				"entries": {
    					"pod": {
    						"container1": "4-6",
    						"container2": "asd"
    					}
    				},
    				"checksum": 962272150
    			}`,
    			"none",
    			containermap.ContainerMap{},
    			`could not parse cpuset "asd" for container "container2" in pod "pod": strconv.Atoi: parsing "asd": invalid syntax`,
    			&stateMemory{},
    		},
    		{
    			"Restore checkpoint from checkpoint with v1 checksum",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    			Name:      "bar-0",
    			HostPath:  "/tmp/asd-0",
    			MountPath: "/tmp/asd-0",
    			ReadOnly:  false,
    			PathType:  v1.HostPathDirectory,
    		},
    		{
    			Name:      "foo-1",
    			HostPath:  "/tmp/qux-1",
    			MountPath: "/tmp/qux-1",
    			ReadOnly:  true,
    			PathType:  v1.HostPathFileOrCreate,
    		},
    		{
    			Name:      "bar-1",
    			HostPath:  "/tmp/asd-1",
    			MountPath: "/tmp/asd-1",
    			ReadOnly:  false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/RegExpPatternStepTest.java

            assertFalse(step.matches("abcd"));
            assertFalse(step.matches("ab"));
            assertFalse(step.matches("a"));
    
            step = new RegExpPatternStep("*", true);
            assertTrue(step.matches("asd;flkj"));
            assertTrue(step.matches(""));
        }
    
        @Test public void testCase() {
            RegExpPatternStep step = new RegExpPatternStep("MiXeD", true);
            assertTrue(step.matches("MiXeD"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/html/template/escape_test.go

    		{
    			"JS hashbang comment",
    			"<script>#! beep\n</script>",
    			"<script>\n</script>",
    		},
    		{
    			"Special tags in <script> string literals",
    			`<script>var a = "asd < 123 <!-- 456 < fgh <script jkl < 789 </script"</script>`,
    			`<script>var a = "asd < 123 \x3C!-- 456 < fgh \x3Cscript jkl < 789 \x3C/script"</script>`,
    		},
    		{
    			"Special tags in <script> string literals (mixed case)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  6. architecture/networking/pilot.md

        crd("CRD Watcher")
        subgraph Service Discovery
            ksd("Kubernetes Controller")
            sesd("Service Entry Controller")
            msd("Memory Controller")
            asd("Aggregate")
            ksd--Join-->asd
            sesd--Join-->asd
            msd--Join-->asd
            ksd<--"Data Sharing"-->sesd
        end
        subgraph ConfigStore
            ccs("CRD Client")
            xcs("XDS Store")
            fcs("File Store")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. src/net/mail/message_test.go

    		15: {"john.doe", "missing '@' or angle-addr"},
    		16: {"john.doe@", "missing '@' or angle-addr"},
    		17: {"John ******@****.***", "no angle-addr"},
    		18: {" group: ******@****.***; (asd", "misformatted parenthetical comment"},
    		19: {" group: ; (asd", "misformatted parenthetical comment"},
    		20: {`(John) Doe <******@****.***e>`, "missing word in phrase:"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/cpu.go

    	// 5.2: Integer Computational Instructions (RV64I)
    	AADDIW
    	ASLLIW
    	ASRLIW
    	ASRAIW
    	AADDW
    	ASLLW
    	ASRLW
    	ASUBW
    	ASRAW
    
    	// 5.3: Load and Store Instructions (RV64I)
    	ALD
    	ASD
    
    	// 7.1: Multiplication Operations
    	AMUL
    	AMULH
    	AMULHU
    	AMULHSU
    	AMULW
    	ADIV
    	ADIVU
    	AREM
    	AREMU
    	ADIVW
    	ADIVUW
    	AREMW
    	AREMUW
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x73, 0x0, 0x1, 1, 0x0}
    	case ASCD:
    		return &inst{0x2f, 0x3, 0x0, 384, 0xc}
    	case ASCW:
    		return &inst{0x2f, 0x2, 0x0, 384, 0xc}
    	case ASCALL:
    		return &inst{0x73, 0x0, 0x0, 0, 0x0}
    	case ASD:
    		return &inst{0x23, 0x3, 0x0, 0, 0x0}
    	case ASEXTB:
    		return &inst{0x13, 0x1, 0x4, 1540, 0x30}
    	case ASEXTH:
    		return &inst{0x13, 0x1, 0x5, 1541, 0x30}
    	case ASFENCEVMA:
    		return &inst{0x73, 0x0, 0x0, 288, 0x9}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    	}
    }
    
    // movToStore converts a MOV mnemonic into the corresponding store instruction.
    func movToStore(mnemonic obj.As) obj.As {
    	switch mnemonic {
    	case AMOV:
    		return ASD
    	case AMOVB:
    		return ASB
    	case AMOVH:
    		return ASH
    	case AMOVW:
    		return ASW
    	case AMOVF:
    		return AFSW
    	case AMOVD:
    		return AFSD
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top