Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for ok1 (0.14 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

            result.assertTestClassesExecuted('SomeLocaleTests')
            result.testClass("SomeLocaleTests").assertTestCount(3, 0, 0)
            result.testClass("SomeLocaleTests").assertTestsExecuted('ok1 [de]', 'ok1 [en]', 'ok1 [fr]')
        }
    
        def "can run parameterized tests with categories"() {
            given:
            testSources.with {
                testCategory('SomeCategory')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterCategoriesOrTagsCoverageIntegrationTest.groovy

            result.testClass("SomeLocaleTests").assertTestCount(3, 0, 0)
            result.testClass("SomeLocaleTests").assertTestsExecuted(
                result.testCase('ok1(Locale)[1]', 'French'),
                result.testCase('ok1(Locale)[2]', 'German'),
                result.testCase('ok1(Locale)[3]', 'English')
            )
        }
    
        def "can run parameterized tests with tags"() {
            given:
            testSources.with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. src/os/types.go

    // the decision may be based on the path names.
    // SameFile only applies to results returned by this package's [Stat].
    // It returns false in other cases.
    func SameFile(fi1, fi2 FileInfo) bool {
    	fs1, ok1 := fi1.(*fileStat)
    	fs2, ok2 := fi2.(*fileStat)
    	if !ok1 || !ok2 {
    		return false
    	}
    	return sameFile(fs1, fs2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/cycle_state_test.go

    		if !ok {
    			isEqual = false
    			msg = fmt.Sprintf("CycleState B doesn't have the data which CycleState A has. key: %v, data: %v", k, v1)
    			return false
    		}
    
    		typed1, ok1 := v1.(*fakeData)
    		typed2, ok2 := v2.(*fakeData)
    		if !ok1 || !ok2 {
    			isEqual = false
    			msg = fmt.Sprintf("CycleState has the data which is not type *fakeData.")
    			return false
    		}
    
    		if typed1.data != typed2.data {
    			isEqual = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 14 15:26:20 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. src/syscall/asm_darwin_amd64.s

    TEXT ·RawSyscall(SB),NOSPLIT,$0-56
    	MOVQ	a1+8(FP), DI
    	MOVQ	a2+16(FP), SI
    	MOVQ	a3+24(FP), DX
    	MOVQ	trap+0(FP), AX	// syscall entry
    	ADDQ	$0x2000000, AX
    	SYSCALL
    	JCC	ok1
    	MOVQ	$-1, r1+32(FP)
    	MOVQ	$0, r2+40(FP)
    	MOVQ	AX, err+48(FP)
    	RET
    ok1:
    	MOVQ	AX, r1+32(FP)
    	MOVQ	DX, r2+40(FP)
    	MOVQ	$0, err+48(FP)
    	RET
    
    // func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:40:39 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  6. src/syscall/asm_openbsd_mips64.s

    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    	MOVV	R0, R7
    	MOVV	R0, R8
    	MOVV	R0, R9
    	MOVV	trap+0(FP), R2	// syscall entry
    	SYSCALL
    	BEQ	R7, ok1
    	MOVV	$-1, R1
    	MOVV	R1, r1+32(FP)	// r1
    	MOVV	R0, r2+40(FP)	// r2
    	MOVV	R2, err+48(FP)	// errno
    	RET
    ok1:
    	MOVV	R2, r1+32(FP)	// r1
    	MOVV	R3, r2+40(FP)	// r2
    	MOVV	R0, err+48(FP)	// errno
    	RET
    
    TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
    	MOVV	a1+8(FP), R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  7. src/syscall/asm_unix_386.s

    	// slide args down on top of system call number
    	LEAL		a1+4(FP), SI
    	LEAL		trap+0(FP), DI
    	CLD
    	MOVSL
    	MOVSL
    	MOVSL
    	INT	$0x80
    	JAE	ok1
    	MOVL	$-1, r1+16(FP)	// r1
    	MOVL	$-1, r2+20(FP)	// r2
    	MOVL	AX, err+24(FP)	// errno
    	RET
    ok1:
    	MOVL	AX, r1+16(FP)	// r1
    	MOVL	DX, r2+20(FP)	// r2
    	MOVL	$0, err+24(FP)	// errno
    	RET
    
    TEXT	·RawSyscall6(SB),NOSPLIT,$0-40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  8. internal/s3select/csv/reader_contrib_test.go

    			wantFields:      "ok1,ok2,ok3\n" + `a word,"b"""` + "\n",
    			wantErr:         io.EOF,
    		},
    		{
    			// This works since LazyQuotes is true:
    			file:            "invalid-badstartline.csv",
    			recordDelimiter: "\n",
    			fieldDelimiter:  ",",
    			sendErr:         nil,
    			header:          true,
    			wantColumns:     []string{"header1", "header2", "header3"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 38.5K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

            return Description.createSuiteDescription(type)
        }
    
        void run(RunNotifier notifier) {
            notifier.fireTestStarted(Description.createTestDescription(type, "ok1"))
            notifier.fireTestFinished(Description.createTestDescription(type, "ok1"))
            notifier.fireTestStarted(Description.createTestDescription(type, "broken"))
            throw failure.rawFailure
        }
    }
    
    public class ATestClassWhichCannotBeLoaded {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/iter/iter.go

    			}
    			done = true // Invalidate iterator
    			race.Release(unsafe.Pointer(&racer))
    		}()
    		seq(yield)
    		var v0 V
    		v, ok = v0, false
    		seqDone = true
    	})
    	next = func() (v1 V, ok1 bool) {
    		race.Write(unsafe.Pointer(&racer)) // detect races
    
    		if done {
    			return
    		}
    		if yieldNext {
    			panic("iter.Pull: next called again before yield")
    		}
    		yieldNext = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top