Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 111 for set6 (0.06 sec)

  1. src/crypto/internal/nistec/p256_asm_s390x.s

    // Constant Selects
    #define SEL1  V13 // Overloaded with RED3
    #define SEL2  V9 // Overloaded with ADD3,SEL5
    #define SEL3  V10 // Overloaded with ADD4,SEL6
    #define SEL4  V6 // Overloaded with YDIG,CAR2,ZER
    #define SEL5  V9 // Overloaded with ADD3,SEL2
    #define SEL6  V10 // Overloaded with ADD4,SEL3
    
    /* *
     * To follow the flow of bits, for your own sanity a stiff drink, need you shall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	SCASD:           "SCASD",
    	SCASQ:           "SCASQ",
    	SCASW:           "SCASW",
    	SETA:            "SETA",
    	SETAE:           "SETAE",
    	SETB:            "SETB",
    	SETBE:           "SETBE",
    	SETE:            "SETE",
    	SETG:            "SETG",
    	SETGE:           "SETGE",
    	SETL:            "SETL",
    	SETLE:           "SETLE",
    	SETNE:           "SETNE",
    	SETNO:           "SETNO",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_utils_test.go

    func TestGetClaimPodName(t *testing.T) {
    	set := apps.StatefulSet{}
    	set.Name = "my-set"
    	claim := v1.PersistentVolumeClaim{}
    	claim.Name = "volume-my-set-2"
    	if pod := getClaimPodName(&set, &claim); pod != "my-set-2" {
    		t.Errorf("Expected my-set-2 found %s", pod)
    	}
    	claim.Name = "long-volume-my-set-20"
    	if pod := getClaimPodName(&set, &claim); pod != "my-set-20" {
    		t.Errorf("Expected my-set-20 found %s", pod)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  4. src/runtime/asm_mips64x.s

    dropm:
    	MOVV	$runtime·dropm(SB), R4
    	JAL	(R4)
    droppedm:
    
    	// Done!
    	RET
    
    // void setg(G*); set g. for use by needm.
    TEXT runtime·setg(SB), NOSPLIT, $0-8
    	MOVV	gg+0(FP), g
    	// This only happens if iscgo, so jump straight to save_g
    	JAL	runtime·save_g(SB)
    	RET
    
    // void setg_gcc(G*); set g called from gcc with g in R1
    TEXT setg_gcc<>(SB),NOSPLIT,$0-0
    	MOVV	R1, g
    	JAL	runtime·save_g(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    A feature should have a _source set_ with the same name.
    Gradle will create a `Jar` task to bundle the classes built from the feature source set, using a classifier corresponding to the kebab-case name of the feature.
    
    WARNING: Do not use the _main_ source set when registering a feature. This behavior will be deprecated in a future version of Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. src/runtime/asm_riscv64.s

    	MOV	ZERO, A3		// arg 3: not used
    	MOV	ZERO, A2		// arg 2: not used
    	MOV	$setg_gcc<>(SB), A1	// arg 1: setg
    	MOV	g, A0			// arg 0: G
    	JALR	RA, T0
    
    nocgo:
    	// update stackguard after _cgo_init
    	MOV	(g_stack+stack_lo)(g), T0
    	ADD	$const_stackGuard, T0
    	MOV	T0, g_stackguard0(g)
    	MOV	T0, g_stackguard1(g)
    
    	// set the per-goroutine and per-mach "registers"
    	MOV	$runtime·m0(SB), T0
    
    	// save m->g0 = g0
    	MOV	g, m_g0(T0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  7. src/runtime/asm_s390x.s

    dropm:
    	MOVD	$runtime·dropm(SB), R3
    	BL	(R3)
    droppedm:
    
    	// Done!
    	RET
    
    // void setg(G*); set g. for use by needm.
    TEXT runtime·setg(SB), NOSPLIT, $0-8
    	MOVD	gg+0(FP), g
    	// This only happens if iscgo, so jump straight to save_g
    	BL	runtime·save_g(SB)
    	RET
    
    // void setg_gcc(G*); set g in C TLS.
    // Must obey the gcc calling convention.
    TEXT setg_gcc<>(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "SETB", argLength: 1, reg: readflags, asm: "SETCS"},  // extract unsigned < condition from arg0
    		{name: "SETBE", argLength: 1, reg: readflags, asm: "SETLS"}, // extract unsigned <= condition from arg0
    		{name: "SETA", argLength: 1, reg: readflags, asm: "SETHI"},  // extract unsigned > condition from arg0
    		{name: "SETAE", argLength: 1, reg: readflags, asm: "SETCC"}, // extract unsigned >= condition from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. src/runtime/asm_loong64.s

    dropm:
    	MOVV	$runtime·dropm(SB), R4
    	JAL	(R4)
    droppedm:
    
    	// Done!
    	RET
    
    // void setg(G*); set g. for use by needm.
    TEXT runtime·setg(SB), NOSPLIT, $0-8
    	MOVV	gg+0(FP), g
    	// This only happens if iscgo, so jump straight to save_g
    	JAL	runtime·save_g(SB)
    	RET
    
    // void setg_gcc(G*); set g called from gcc with g in R19
    TEXT setg_gcc<>(SB),NOSPLIT,$0-0
    	MOVV	R19, g
    	JAL	runtime·save_g(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. src/runtime/asm_mipsx.s

    dropm:
    	MOVW	$runtime·dropm(SB), R4
    	JAL	(R4)
    droppedm:
    
    	// Done!
    	RET
    
    // void setg(G*); set g. for use by needm.
    // This only happens if iscgo, so jump straight to save_g
    TEXT runtime·setg(SB),NOSPLIT,$0-4
    	MOVW	gg+0(FP), g
    	JAL	runtime·save_g(SB)
    	RET
    
    // void setg_gcc(G*); set g in C TLS.
    // Must obey the gcc calling convention.
    TEXT setg_gcc<>(SB),NOSPLIT,$0
    	MOVW	R4, g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top