Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,030 for continueCh (0.23 sec)

  1. pkg/api/testing/meta_test.go

    					continue
    				case isLM:
    					m := lm.GetListMeta()
    					if m == nil {
    						t.Errorf("%v (%v) returns nil ListMeta", gv.WithKind(kind), knownType)
    						continue
    					}
    					m.SetResourceVersion("102030")
    					if m.GetResourceVersion() != "102030" {
    						t.Errorf("%v (%v) did not preserve resource version", gv.WithKind(kind), knownType)
    						continue
    					}
    				case isOM:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/debug/pe/symbols_test.go

    	for k := range f.COFFSymbols {
    		tp, ok := testpoints[k]
    		if !ok {
    			continue
    		}
    		sym := &f.COFFSymbols[k]
    		if sym.NumberOfAuxSymbols == 0 {
    			t.Errorf("expected aux symbols for sym %d", k)
    			continue
    		}
    		name, nerr := sym.FullName(f.StringTable)
    		if nerr != nil {
    			t.Errorf("FullName(%d) failed with %v", k, nerr)
    			continue
    		}
    		if name != tp.name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 18:07:48 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritegeneric.go

    			if v_0.Op != OpLsh16x64 {
    				continue
    			}
    			_ = v_0.Args[1]
    			x := v_0.Args[0]
    			z := v_0.Args[1]
    			if z.Op != OpConst64 {
    				continue
    			}
    			c := auxIntToInt64(z.AuxInt)
    			if v_1.Op != OpRsh16Ux64 {
    				continue
    			}
    			_ = v_1.Args[1]
    			if x != v_1.Args[0] {
    				continue
    			}
    			v_1_1 := v_1.Args[1]
    			if v_1_1.Op != OpConst64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix.go

    		var p dnsmessage.Parser
    		// Ignore invalid responses as they may be malicious
    		// forgery attempts. Instead continue waiting until
    		// timeout. See golang.org/issue/13281.
    		h, err := p.Start(b[:n])
    		if err != nil {
    			continue
    		}
    		q, err := p.Question()
    		if err != nil || !checkResponse(id, query, h, q) {
    			continue
    		}
    		return p, h, nil
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/ContinueIntegrationTest.groovy

    class ContinueIntegrationTest extends AbstractIntegrationSpec {
    
        def "--continue flag PRESENT"() {
            given:
            buildScript()
    
            when:
            args("--continue")
            fails(":failTask", ":successTask")
    
            then:
            output.contains("2 actionable tasks: 2 executed")
        }
    
        def "--continue flag MISSING"() {
            given:
            buildScript()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/ssa_test.go

    			fd, ok := d.(*ast.FuncDecl)
    			if !ok {
    				continue
    			}
    			if !strings.HasPrefix(fd.Name.Name, "Test") {
    				continue
    			}
    			if fd.Recv != nil {
    				continue
    			}
    			if fd.Type.Results != nil {
    				continue
    			}
    			if len(fd.Type.Params.List) != 1 {
    				continue
    			}
    			p := fd.Type.Params.List[0]
    			if len(p.Names) != 1 {
    				continue
    			}
    			s, ok := p.Type.(*ast.StarExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/regexp/testdata/testregex.c

    				case 'c':
    					cflags |= REG_COMMENT;
    					continue;
    				case 'd':
    					cflags |= REG_SHELL_DOT;
    					continue;
    				case 'e':
    					eflags |= REG_NOTEOL;
    					continue;
    				case 'f':
    					cflags |= REG_MULTIPLE;
    					continue;
    				case 'g':
    					cflags |= NOTEST;
    					continue;
    				case 'h':
    					cflags |= REG_MULTIREF;
    					continue;
    				case 'i':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.s

    TEXT ·kimd(SB), NOFRAME|NOSPLIT, $0-40
    	MOVD function+0(FP), R0
    	MOVD chain+8(FP), R1
    	LMG  src+16(FP), R2, R3 // R2=base, R3=len
    
    continue:
    	WORD $0xB93E0002 // KIMD --, R2
    	BVS  continue    // continue if interrupted
    	MOVD $0, R0      // reset R0 for pre-go1.8 compilers
    	RET
    
    // func klmd(function code, chain *[200]byte, dst, src []byte)
    TEXT ·klmd(SB), NOFRAME|NOSPLIT, $0-64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 957 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/execution/VerificationFailureHandlingIntegrationTest.groovy

            when:
            fails('consumerTask', '--continue')
    
            then:
            result.assertTaskExecuted(':producerTask')
            result.assertTaskExecuted(':consumerTask')
    
            when:
            fails('consumerTask', '--continue')
    
            then:
            result.assertTaskExecuted(':producerTask')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 18 04:22:00 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. src/crypto/x509/pkcs8_test.go

    			t.Errorf("%s: failed to decode hex: %s", test.name, err)
    			continue
    		}
    		privKey, err := ParsePKCS8PrivateKey(derBytes)
    		if err != nil {
    			t.Errorf("%s: failed to decode PKCS#8: %s", test.name, err)
    			continue
    		}
    		if reflect.TypeOf(privKey) != test.keyType {
    			t.Errorf("%s: decoded PKCS#8 returned unexpected key type: %T", test.name, privKey)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 16:45:10 UTC 2022
    - 9K bytes
    - Viewed (0)
Back to top