Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ASD (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"otherField": "value",
    					}},
    				expectError{applyPatchOperation{
    					"change field to an invalid string",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field": "asd",
    					}}},
    				applyPatchOperation{
    					"change field to a valid byte string",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field": "dGhpcyBpcyBwYXNzd29yZA==",
    					}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. cmd/testdata/undeleteable-object.tgz

    §EcIndex ¦EcDistœ ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ñ ªPartASizes‘Ñ ¤SizeÑ ¥MTimeÓ É Ÿ ²€§MetaSys ¼x-minio-internal-inline-dataÄ true§MetaUsr‚¤etagÙ 14a1119d5fe668d77000¬content-type¸application/octet-stream¡v ΙøÍ‘ ¤nullÄ7 ÙÉ ‹§>˜E° eò£mé$Q*9} ãŠD ð-j × ÿÿÿÿ%Í5ø "ð½Õ7VÏu}Ì­ ej multisitea/data/disterasure/xl9/.minio.sys/buckets/.background-heal.json/xl.meta XL2 Æ o Ä$•Ä Ó É žY'XÄ ÔxoG Å Cƒ¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ ü `LΓA ³I*rfe ¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistœ ¨CSumAlgo ¨PartNums‘...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
Back to top