Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for qsubs (0.05 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/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		} else {
    			// Merge adjacent qualifiers.  This case
    			// happens with multi-dimensional array types.
    			if qsub, ok := ret.(*TypeWithQualifiers); ok {
    				q = mergeQualifiers(q, qsub.Qualifiers)
    				ret = qsub.Base
    			}
    			ret = &TypeWithQualifiers{Base: ret, Qualifiers: q}
    		}
    		st.subs.add(ret)
    	}
    
    	return ret
    }
    
    // demangleCastTemplateArgs is for a rather hideous parse.  When we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	QSUB8_EQ:          "QSUB8.EQ",
    	QSUB8_NE:          "QSUB8.NE",
    	QSUB8_CS:          "QSUB8.CS",
    	QSUB8_CC:          "QSUB8.CC",
    	QSUB8_MI:          "QSUB8.MI",
    	QSUB8_PL:          "QSUB8.PL",
    	QSUB8_VS:          "QSUB8.VS",
    	QSUB8_VC:          "QSUB8.VC",
    	QSUB8_HI:          "QSUB8.HI",
    	QSUB8_LS:          "QSUB8.LS",
    	QSUB8_GE:          "QSUB8.GE",
    	QSUB8_LT:          "QSUB8.LT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/obj/riscv/anames.go

    	"RDTIME",
    	"RDTIMEH",
    	"RDINSTRET",
    	"RDINSTRETH",
    	"FRCSR",
    	"FSCSR",
    	"FRRM",
    	"FSRM",
    	"FRFLAGS",
    	"FSFLAGS",
    	"FSRMI",
    	"FSFLAGSI",
    	"FLW",
    	"FSW",
    	"FADDS",
    	"FSUBS",
    	"FMULS",
    	"FDIVS",
    	"FMINS",
    	"FMAXS",
    	"FSQRTS",
    	"FMADDS",
    	"FMSUBS",
    	"FNMADDS",
    	"FNMSUBS",
    	"FCVTWS",
    	"FCVTLS",
    	"FCVTSW",
    	"FCVTSL",
    	"FCVTWUS",
    	"FCVTLUS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. 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)
  10. src/internal/bytealg/indexbyte_arm64.s

    	LSL	$1, R9, R4
    	LSR	R4, R6, R6
    	LSL	R4, R6, R6
    	// The first block can also be the last
    	BLS	masklast
    	// Have we found something already?
    	CBNZ	R6, tail
    
    loop:
    	VLD1.P	(R3), [V1.B16, V2.B16]
    	SUBS	$0x20, R2, R2
    	VCMEQ	V0.B16, V1.B16, V3.B16
    	VCMEQ	V0.B16, V2.B16, V4.B16
    	// If we're out of data we finish regardless of the result
    	BLS	end
    	// Use a fast check for the termination condition
    	VORR	V4.B16, V3.B16, V6.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 3.3K bytes
    - Viewed (0)
Back to top