Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,924 for continueCh (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/internal/diff/diff.go

    		// the chunk includes all the common lines and continues.
    		const C = 3 // number of context lines
    		if (end.x < len(x) || end.y < len(y)) &&
    			(end.x-start.x < C || (len(ctext) > 0 && end.x-start.x < 2*C)) {
    			for _, s := range x[start.x:end.x] {
    				ctext = append(ctext, " "+s)
    				count.x++
    				count.y++
    			}
    			done = end
    			continue
    		}
    
    		// End chunk with common lines for context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. cmd/admin-bucket-handlers.go

    				continue
    			}
    
    			bucketPolicyBytes, err := io.ReadAll(io.LimitReader(reader, sz))
    			if err != nil {
    				rpt.SetStatus(bucket, fileName, err)
    				continue
    			}
    
    			bucketPolicy, err := policy.ParseBucketPolicyConfig(bytes.NewReader(bucketPolicyBytes), bucket)
    			if err != nil {
    				rpt.SetStatus(bucket, fileName, err)
    				continue
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. src/internal/poll/fd_unix.go

    		}
    		switch err {
    		case syscall.EINTR:
    			continue
    		case syscall.EAGAIN:
    			if fd.pd.pollable() {
    				if err = fd.pd.waitRead(fd.isFile); err == nil {
    					continue
    				}
    			}
    		case syscall.ECONNABORTED:
    			// This means that a socket on the listen
    			// queue was closed before we Accept()ed it;
    			// it's a silly error, so try again.
    			continue
    		}
    		return -1, nil, errcall, err
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. pkg/apis/networking/fuzzer/fuzzer.go

    			}
    		},
    		func(path *networking.HTTPIngressPath, c fuzz.Continue) {
    			c.FuzzNoCustom(path) // fuzz self without calling this function again
    			pathTypes := []networking.PathType{networking.PathTypeExact, networking.PathTypePrefix, networking.PathTypeImplementationSpecific}
    			path.PathType = &pathTypes[c.Rand.Intn(len(pathTypes))]
    		},
    		func(p *networking.ServiceBackendPort, c fuzz.Continue) {
    			c.FuzzNoCustom(p)
    			// clear one of the fields
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    func fuzzNodeRegistration(obj *kubeadm.NodeRegistrationOptions, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    	// Pinning values for fields that get defaults if fuzz value is empty string or nil (thus making the round trip test fail)
    	obj.IgnorePreflightErrors = nil
    	obj.ImagePullSerial = ptr.To(true)
    }
    
    func fuzzClusterConfiguration(obj *kubeadm.ClusterConfiguration, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/internal/buildid/buildid_test.go

    			t.Errorf("FindAndHash(%s): %v", f, err)
    			continue
    		}
    		if err := os.WriteFile(tmp, data, 0666); err != nil {
    			t.Error(err)
    			continue
    		}
    		tf, err := os.OpenFile(tmp, os.O_WRONLY, 0)
    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		err = Rewrite(tf, m, newID)
    		err2 := tf.Close()
    		if err != nil {
    			t.Errorf("Rewrite(%s): %v", f, err)
    			continue
    		}
    		if err2 != nil {
    			t.Fatal(err2)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top