Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 297 for continueCh (0.21 sec)

  1. cmd/object-api-listobjects_test.go

    						if j >= len(resultL.Objects) {
    							t.Errorf("Test %d: %s: Expected object name to be \"%s\", but not nothing instead", i+1, instanceType, testCase.resultL.Objects[j].Name)
    							continue
    						}
    						if testCase.resultL.Objects[j].Name != resultL.Objects[j].Name {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    		}
    		for _, ip := range nodeIPs {
    			if ip.IsLoopback() {
    				proxier.logger.Error(nil, "--nodeport-addresses includes localhost but localhost NodePorts are not supported", "address", ip.String())
    				continue
    			}
    			tx.Add(&knftables.Element{
    				Set: nodePortIPsSet,
    				Key: []string{
    					ip.String(),
    				},
    			})
    		}
    	}
    
    	// Set up "no endpoints" drop/reject handling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    			continue
    		}
    		if (c == nil || c.MinVersion == 0) && v < VersionTLS12 {
    			if isClient || tls10server.Value() != "1" {
    				continue
    			}
    		}
    		if isClient && c.EncryptedClientHelloConfigList != nil && v < VersionTLS13 {
    			continue
    		}
    		if c != nil && c.MinVersion != 0 && v < c.MinVersion {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. src/bufio/bufio_test.go

    			if n, err := w.ReadFrom(r); err != nil || n != int64(len(input)) {
    				t.Errorf("ws[%d],rs[%d]: w.ReadFrom(r) = %d, %v, want %d, nil", wi, ri, n, err, len(input))
    				continue
    			}
    			if err := w.Flush(); err != nil {
    				t.Errorf("Flush returned %v", err)
    				continue
    			}
    			if got, want := b.String(), string(input); got != want {
    				t.Errorf("ws[%d], rs[%d]:\ngot  %q\nwant %q\n", wi, ri, got, want)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    					continue
    				} else if !proxier.localhostNodePorts {
    					proxier.logger.Error(nil, "--nodeport-addresses includes localhost but --iptables-localhost-nodeports=false was passed", "address", ip.String())
    					continue
    				}
    			}
    
    			// create nodeport rules for each IP one by one
    			proxier.natRules.Write(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. src/os/os_test.go

    					t.Errorf("Open %s: %s", d, err1)
    					continue
    				}
    				err = fd1.Chdir()
    				fd1.Close()
    			}
    			if d == "/tmp" {
    				Setenv("PWD", "/tmp")
    			}
    			pwd, err1 := Getwd()
    			Setenv("PWD", oldwd)
    			err2 := fd.Chdir()
    			if err2 != nil {
    				// We changed the current directory and cannot go back.
    				// Don't let the tests continue; they'll scribble
    				// all over some other directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation.go

    		if resSub == "" {
    			allErrors = append(allErrors, field.Required(fldPath.Index(i), ""))
    			continue
    		}
    		if resSub == "*/*" {
    			hasDoubleWildcard = true
    		}
    		if resSub == "*" {
    			hasSingleWildcard = true
    		}
    		parts := strings.SplitN(resSub, "/", 2)
    		if len(parts) == 1 {
    			hasResourceWithoutSubresource = resSub != "*"
    			continue
    		}
    		res, sub := parts[0], parts[1]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. src/go/parser/parser.go

    			if p.top && strings.HasPrefix(p.lit, "//go:build") {
    				if x, err := constraint.Parse(p.lit); err == nil {
    					p.goVersion = constraint.GoVersion(x)
    				}
    			}
    			if p.mode&ParseComments == 0 {
    				continue
    			}
    		} else {
    			// Found a non-comment; top of file is over.
    			p.top = false
    		}
    		break
    	}
    }
    
    // Consume a comment and return it and the line on which it ends.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  9. src/debug/elf/file_test.go

    			}
    		} else {
    			f, err = Open(tt.file)
    		}
    		if err != nil {
    			t.Errorf("cannot open file %s: %v", tt.file, err)
    			continue
    		}
    		defer f.Close()
    		if f.FileHeader != tt.hdr {
    			t.Errorf("open %s:\n\thave %#v\n\twant %#v\n", tt.file, f.FileHeader, tt.hdr)
    			continue
    		}
    		for i, s := range f.Sections {
    			if i >= len(tt.sections) {
    				break
    			}
    			sh := tt.sections[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    		data.size = data.unsafeSizeOf()
    		err := setupDiGetDriverInfoDetail(deviceInfoSet, deviceInfoData, driverInfoData, data, uint32(len(buf)), &reqSize)
    		if err == ERROR_INSUFFICIENT_BUFFER {
    			continue
    		}
    		if err != nil {
    			return nil, err
    		}
    		data.size = reqSize
    		return data, nil
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
Back to top