Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,836 for continueCh (0.25 sec)

  1. pkg/controller/deployment/rolling_test.go

    		if err != nil {
    			t.Errorf("unexpected error: %v", err)
    			continue
    		}
    		if !test.scaleExpected {
    			if scaled || len(fake.Actions()) > 0 {
    				t.Errorf("unexpected scaling: %v", fake.Actions())
    			}
    			continue
    		}
    		if test.scaleExpected && !scaled {
    			t.Errorf("expected scaling to occur")
    			continue
    		}
    		if len(fake.Actions()) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. cmd/erasure-healing-common.go

    		if errs[i] != nil {
    			metaErrs[i] = errs[i]
    			continue
    		}
    		if onlineDisk == OfflineDisk {
    			metaErrs[i] = errDiskNotFound
    			continue
    		}
    
    		meta := partsMetadata[i]
    		if !meta.ModTime.Equal(latestMeta.ModTime) || meta.DataDir != latestMeta.DataDir {
    			metaErrs[i] = errFileCorrupt
    			partsMetadata[i] = FileInfo{}
    			continue
    		}
    
    		if erasureDistributionReliable {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  4. 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)
  5. src/html/template/escape.go

    }
    
    // rangeContext holds information about the current range loop.
    type rangeContext struct {
    	outer     *rangeContext // outer loop
    	breaks    []context     // context at each break action
    	continues []context     // context at each continue action
    }
    
    // makeEscaper creates a blank escaper for the given set.
    func makeEscaper(n *nameSpace) escaper {
    	return escaper{
    		n,
    		map[string]context{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    		func(q *resource.Quantity, c fuzz.Continue) {
    			*q = *resource.NewQuantity(c.Int63n(1000), resource.DecimalExponent)
    		},
    		func(j *int, c fuzz.Continue) {
    			*j = int(c.Int31())
    		},
    		func(j **int, c fuzz.Continue) {
    			if c.RandBool() {
    				i := int(c.Int31())
    				*j = &i
    			} else {
    				*j = nil
    			}
    		},
    		func(j *runtime.TypeMeta, c fuzz.Continue) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. 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)
  8. src/net/http/response_test.go

    		if tt.wantErr != nil {
    			if err == nil {
    				t.Errorf("%d. err=nil; want %q", i, tt.wantErr)
    				continue
    			}
    			if g, e := err.Error(), tt.wantErr.Error(); g != e {
    				t.Errorf("%d. err=%q; want %q", i, g, e)
    				continue
    			}
    			continue
    		}
    		if err != nil {
    			t.Errorf("%d. err=%q", i, err)
    			continue
    		}
    		if g, e := got.String(), tt.want; g != e {
    			t.Errorf("%d. Location=%q; want %q", i, g, e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. 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)
  10. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
Back to top