Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 85 for x_subs (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    [listing,subs=+attributes]
    ----
    $ gradle wrapper --gradle-version {gradleVersion} --distribution-type all
    include::{snippetsPath}/wrapper/simple/tests/wrapperCommandLine.out[]
    ----
    
    As a result, you can find the desired information (the generated distribution URL) in the Wrapper properties file:
    
    [source,properties,subs=+attributes]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/internal/bytealg/compare_arm64.s

    	MOVD	$1, R0
    	CNEG	HI, R0, R0
    	RET
    small:
    	TBZ	$3, R6, lt_8
    	MOVD	(R0), R4
    	MOVD	(R2), R5
    	CMP	R4, R5
    	BNE	cmp
    	SUBS	$8, R6
    	BEQ	samebytes
    	ADD	$8, R0
    	ADD	$8, R2
    	SUB	$8, R6
    	B	tail
    lt_8:
    	TBZ	$2, R6, lt_4
    	MOVWU	(R0), R4
    	MOVWU	(R2), R5
    	CMPW	R4, R5
    	BNE	cmp
    	SUBS	$4, R6
    	BEQ	samebytes
    	ADD	$4, R0
    	ADD	$4, R2
    lt_4:
    	TBZ	$1, R6, lt_2
    	MOVHU	(R0), R4
    	MOVHU	(R2), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. src/runtime/memmove_arm64.s

    	LDP	-48(R4), (R10, R11)
    	LDP.W	-64(R4), (R12, R13)
    	SUB	R14, R5, R5
    	SUBS	$128, R2, R2
    	BLS	copy64_from_start
    
    loop64_backward:
    	STP	(R6, R7), -16(R5)
    	LDP	-16(R4), (R6, R7)
    	STP	(R8, R9), -32(R5)
    	LDP	-32(R4), (R8, R9)
    	STP	(R10, R11), -48(R5)
    	LDP	-48(R4), (R10, R11)
    	STP.W	(R12, R13), -64(R5)
    	LDP.W	-64(R4), (R12, R13)
    	SUBS	$64, R2, R2
    	BHI	loop64_backward
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    This can lead to phantom build directories, especially when using `allprojects{}` or `subproject{}`.
    
    To avoid this, you can use:
    
    ```
    include(':subs:web:my-web-module')
    project(':subs:web:my-web-module').projectDir = "subs/web/my-web-module"
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. internal/pubsub/pubsub_test.go

    		t.Fatalf("unexpected error: %v", err)
    	}
    	if err := ps.Subscribe(MaskAll, ch2, doneCh, nil); err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	ps.Lock()
    	defer ps.Unlock()
    
    	if len(ps.subs) != 2 || ps.NumSubscribers(MaskAll) != 2 || ps.Subscribers() != 2 {
    		t.Fatalf("expected 2 subscribers")
    	}
    }
    
    func TestNumSubscribersMask(t *testing.T) {
    	ps := New[Maskable, Mask](2)
    	ch1 := make(chan Maskable, 1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/a.out.go

    	AFRINTIS
    	AFRINTMD
    	AFRINTMS
    	AFRINTND
    	AFRINTNS
    	AFRINTPD
    	AFRINTPS
    	AFRINTXD
    	AFRINTXS
    	AFRINTZD
    	AFRINTZS
    	AFSQRTD
    	AFSQRTS
    	AFSTPD
    	AFSTPQ
    	AFSTPS
    	AFSUBD
    	AFSUBS
    	AHINT
    	AHLT
    	AHVC
    	AIC
    	AISB
    	ALDADDAB
    	ALDADDAD
    	ALDADDAH
    	ALDADDALB
    	ALDADDALD
    	ALDADDALH
    	ALDADDALW
    	ALDADDAW
    	ALDADDB
    	ALDADDD
    	ALDADDH
    	ALDADDLB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	FCTIDZ:         "fctidz",
    	FCTIDZCC:       "fctidz.",
    	FDIVS:          "fdivs",
    	FDIVSCC:        "fdivs.",
    	FMADDS:         "fmadds",
    	FMADDSCC:       "fmadds.",
    	FMSUBS:         "fmsubs",
    	FMSUBSCC:       "fmsubs.",
    	FMULS:          "fmuls",
    	FMULSCC:        "fmuls.",
    	FNMADDS:        "fnmadds",
    	FNMADDSCC:      "fnmadds.",
    	FNMSUBS:        "fnmsubs",
    	FNMSUBSCC:      "fnmsubs.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  8. src/io/fs/readfile_test.go

    	if string(data) != "hello, world" || err != nil {
    		t.Fatalf(`ReadFile(openOnly, "hello.txt") = %q, %v, want %q, nil`, data, err, "hello, world")
    	}
    
    	// Test that ReadFile on Sub of . works (sub_test checks non-trivial subs).
    	sub, err := Sub(testFsys, ".")
    	if err != nil {
    		t.Fatal(err)
    	}
    	data, err = ReadFile(sub, "hello.txt")
    	if string(data) != "hello, world" || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:25:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/riscv64.s

    	FSGNJXS	F1, F0, F2				// 53211020
    	FMVXS	F0, X5					// d30200e0
    	FMVSX	X5, F0					// 538002f0
    	FMVXW	F0, X5					// d30200e0
    	FMVWX	X5, F0					// 538002f0
    	FMADDS	F1, F2, F3, F4				// 43822018
    	FMSUBS	F1, F2, F3, F4				// 47822018
    	FNMSUBS	F1, F2, F3, F4				// 4b822018
    	FNMADDS	F1, F2, F3, F4				// 4f822018
    
    	// 11.8: Single-Precision Floating-Point Compare Instructions
    	FEQS	F0, F1, X7				// d3a300a0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/s390x.s

    	FIEBR	$0, F0, F1             // b3570010
    	FIDBR	$7, F2, F3             // b35f7032
    	FMADD	F1, F1, F1             // b31e1011
    	FMADDS	F1, F2, F3             // b30e3012
    	FMSUB	F4, F5, F5             // b31f5045
    	FMSUBS	F6, F6, F7             // b30f7066
    	LPDFR	F1, F2                 // b3700021
    	LNDFR	F3, F4                 // b3710043
    	CPSDR	F5, F6, F7             // b3725076
    	LTEBR	F1, F2                 // b3020021
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top