Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 969 for continueCh (0.16 sec)

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

    		if aa.OperStatus != windows.IfOperStatusUp {
    			continue
    		}
    
    		// Only take interfaces which have at least one gateway
    		if aa.FirstGatewayAddress == nil {
    			continue
    		}
    
    		for dns := aa.FirstDnsServerAddress; dns != nil; dns = dns.Next {
    			sa, err := dns.Address.Sockaddr.Sockaddr()
    			if err != nil {
    				continue
    			}
    			var ip IP
    			switch sa := sa.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. pilot/pkg/util/network/ip.go

    		if iface.Flags&net.FlagUp == 0 {
    			continue // interface down
    		}
    		if iface.Flags&net.FlagLoopback != 0 {
    			continue // loopback interface
    		}
    		addrs, _ := iface.Addrs()
    
    		for _, addr := range addrs {
    			var ip net.IP
    			switch v := addr.(type) {
    			case *net.IPNet:
    				ip = v.IP
    			case *net.IPAddr:
    				ip = v.IP
    			default:
    				continue
    			}
    			ipAddr, okay := netip.AddrFromSlice(ip)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/TypesTest.groovy

            then: 1 * visitor.visitType(Child) >> Types.TypeVisitResult.CONTINUE
            then: 1 * visitor.visitType(Base) >> Types.TypeVisitResult.CONTINUE
            then: 1 * visitor.visitType(Serializable) >> Types.TypeVisitResult.CONTINUE
            then: 1 * visitor.visitType(Iface) >> Types.TypeVisitResult.CONTINUE
            then: 0 * _
        }
    
        def "can terminate type hierarchy walk"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotVisitResult.java

    package org.gradle.internal.snapshot;
    
    /**
     * Ways to continue visiting a snapshot hierarchy after an entry has been visited.
     *
     * @see java.nio.file.FileVisitResult
     */
    public enum SnapshotVisitResult {
    
        /**
         * Continue visiting. When returned after visiting a directory,
         * the entries in the directory will be visited next.
         */
        CONTINUE,
    
        /**
         * Terminate visiting immediately.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. pkg/apis/batch/fuzzer/fuzzer.go

    	return []interface{}{
    		func(j *batch.Job, c fuzz.Continue) {
    			c.FuzzNoCustom(j) // fuzz self without calling this function again
    
    			// match defaulting
    			if len(j.Labels) == 0 {
    				j.Labels = j.Spec.Template.Labels
    			}
    		},
    		func(j *batch.JobSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(j) // fuzz self without calling this function again
    			completions := int32(c.Rand.Int31())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/fuzzer/fuzzer.go

    		func(obj *apiextensions.JSONSchemaProps, c fuzz.Continue) {
    			// we cannot use c.FuzzNoCustom because of the interface{} fields. So let's loop with reflection.
    			vobj := reflect.ValueOf(obj).Elem()
    			tobj := reflect.TypeOf(obj).Elem()
    			for i := 0; i < tobj.NumField(); i++ {
    				field := tobj.Field(i)
    				switch field.Name {
    				case "Default", "Enum", "Example", "Ref":
    					continue
    				default:
    					isValue := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top