Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for o2k2 (0.27 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

            when:
            succeedsWithTestTaskArguments("test", "--tests=Ok2*")
    
            then:
            def testResult = new DefaultTestExecutionResult(testDirectory)
            testResult.assertTestClassesExecuted('Ok2')
    
            when:
            succeedsWithTestTaskArguments("cleanTest", "test", "--tests=Ok*")
    
            then:
            testResult.assertTestClassesExecuted('Ok', 'Ok2')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. src/syscall/asm_unix_amd64.s

    	MOVQ	a2+16(FP), SI
    	MOVQ	a3+24(FP), DX
    	MOVQ	a4+32(FP), R10
    	MOVQ	a5+40(FP), R8
    	MOVQ	a6+48(FP), R9
    	MOVQ	trap+0(FP), AX	// syscall entry
    	SYSCALL
    	JCC	ok2
    	MOVQ	$-1, r1+56(FP)	// r1
    	MOVQ	$0, r2+64(FP)	// r2
    	MOVQ	AX, err+72(FP)	// errno
    	RET
    ok2:
    	MOVQ	AX, r1+56(FP)	// r1
    	MOVQ	DX, r2+64(FP)	// r2
    	MOVQ	$0, err+72(FP)	// errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:40:39 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/jwks_resolver.go

    			key1, ok1 := oldKeys[i].(map[string]any)
    			key2, ok2 := oldKeys[j].(map[string]any)
    			if ok1 && ok2 {
    				key1Id, kid1Exists := key1["kid"]
    				key2Id, kid2Exists := key2["kid"]
    				if kid1Exists && kid2Exists {
    					key1IdStr, ok1 := key1Id.(string)
    					key2IdStr, ok2 := key2Id.(string)
    					if ok1 && ok2 {
    						return key1IdStr < key2IdStr
    					}
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/os/types.go

    // 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)
  5. src/math/big/intconv_test.go

    		n2, ok2 := tmp.SetString(test.in, test.base)
    		expected := NewInt(test.val)
    		if ok1 != test.ok || ok2 != test.ok {
    			t.Errorf("#%d (input '%s') ok incorrect (should be %t)", i, test.in, test.ok)
    			continue
    		}
    		if !ok1 {
    			if n1 != nil {
    				t.Errorf("#%d (input '%s') n1 != nil", i, test.in)
    			}
    			continue
    		}
    		if !ok2 {
    			if n2 != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 22:58:58 UTC 2019
    - 10K bytes
    - Viewed (0)
  6. src/syscall/asm_darwin_amd64.s

    	MOVQ	a3+24(FP), DX
    	MOVQ	a4+32(FP), R10
    	MOVQ	a5+40(FP), R8
    	MOVQ	a6+48(FP), R9
    	MOVQ	trap+0(FP), AX	// syscall entry
    	ADDQ	$0x2000000, AX
    	SYSCALL
    	JCC	ok2
    	MOVQ	$-1, r1+56(FP)
    	MOVQ	$0, r2+64(FP)
    	MOVQ	AX, err+72(FP)
    	RET
    ok2:
    	MOVQ	AX, r1+56(FP)
    	MOVQ	DX, r2+64(FP)
    	MOVQ	$0, err+72(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:40:39 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. src/syscall/asm_unix_386.s

    	LEAL		a1+4(FP), SI
    	LEAL		trap+0(FP), DI
    	CLD
    	MOVSL
    	MOVSL
    	MOVSL
    	MOVSL
    	MOVSL
    	MOVSL
    	INT	$0x80
    	JAE	ok2
    	MOVL	$-1, r1+28(FP)	// r1
    	MOVL	$-1, r2+32(FP)	// r2
    	MOVL	AX, err+36(FP)	// errno
    	RET
    ok2:
    	MOVL	AX, r1+28(FP)	// r1
    	MOVL	DX, r2+32(FP)	// r2
    	MOVL	$0, err+36(FP)	// errno
    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. pkg/scheduler/framework/cycle_state_test.go

    			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)
  9. src/syscall/asm_openbsd_mips64.s

    	MOVV	a3+24(FP), R6
    	MOVV	a4+32(FP), R7
    	MOVV	a5+40(FP), R8
    	MOVV	a6+48(FP), R9
    	MOVV	trap+0(FP), R2	// syscall entry
    	SYSCALL
    	BEQ	R7, ok2
    	MOVV	$-1, R1
    	MOVV	R1, r1+56(FP)	// r1
    	MOVV	R0, r2+64(FP)	// r2
    	MOVV	R2, err+72(FP)	// errno
    	RET
    ok2:
    	MOVV	R2, r1+56(FP)	// r1
    	MOVV	R3, r2+64(FP)	// r2
    	MOVV	R0, err+72(FP)	// errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  10. test/initializerr.go

    var a5 = []byte{x: 2}                           // ERROR "index"
    var a6 = []byte{1: 1, 2: 2, 1: 3}               // ERROR "duplicate"
    
    var ok1 = S{}       // should be ok
    var ok2 = T{S: ok1} // should be ok
    
    // These keys can be computed at compile time but they are
    // not constants as defined by the spec, so they do not trigger
    // compile-time errors about duplicate key values.
    // See issue 4555.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top