Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 115 for continueCh (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/ssa/rewrite.go

    			// Since target and load are in the same block
    			// we can stop searching when we leave the block.
    			continue
    		}
    		if v.Op == OpPhi {
    			// A Phi implies we have reached the top of the block.
    			// The memory phi, if it exists, is always
    			// the first logical store in the block.
    			continue
    		}
    		if v.Type.IsTuple() && v.Type.FieldType(1).IsMemory() {
    			// We could handle this situation however it is likely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    		case "Renegotiation":
    			f.Set(reflect.ValueOf(RenegotiateOnceAsClient))
    		case "EncryptedClientHelloConfigList":
    			f.Set(reflect.ValueOf([]byte{'x'}))
    		case "mutex", "autoSessionTicketKeys", "sessionTicketKeys":
    			continue // these are unexported fields that are handled separately
    		default:
    			t.Errorf("all fields must be accounted for, but saw unknown field %q", fn)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			Type: "string",
    			Enum: []apiextensionsv1.JSON{{
    				Raw: []byte(`"` + uuidString + `"`),
    			}},
    		}
    
    		for _, v := range myCRD.Spec.Versions {
    			if v.Name != myCRDV1Beta1.Version {
    				continue
    			}
    			v.Schema.OpenAPIV3Schema = sch
    		}
    
    		_, err = ctx.APIExtensionsClient.ApiextensionsV1().CustomResourceDefinitions().Update(context.TODO(), myCRD, metav1.UpdateOptions{
    			FieldManager: "manager",
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    			if s.Attributes.ExportTo.Contains(visibility.Public) {
    				ps.ServiceIndex.public = append(ps.ServiceIndex.public, s)
    				continue
    			} else if s.Attributes.ExportTo.Contains(visibility.None) {
    				continue
    			}
    			// . or other namespaces
    			for exportTo := range s.Attributes.ExportTo {
    				if exportTo == visibility.Private || string(exportTo) == ns {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    			continue
    		}
    		if mustBeLabeled != "" || mustNotBeLabeled != "" {
    			// We found a definitive frame, so mayBeLabeled hints are not relevant.
    			mayBeLabeled = false
    		}
    		if mayBeLabeled {
    			// This sample may or may not be labeled, so there's nothing we can check.
    			continue
    		}
    		if mustBeLabeled != "" && !isLabeled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. src/net/http/client_test.go

    		u0, err := url.Parse(tt.initialURL)
    		if err != nil {
    			t.Errorf("%d. initial URL %q parse error: %v", i, tt.initialURL, err)
    			continue
    		}
    		u1, err := url.Parse(tt.destURL)
    		if err != nil {
    			t.Errorf("%d. dest URL %q parse error: %v", i, tt.destURL, err)
    			continue
    		}
    		got := Export_shouldCopyHeaderOnRedirect(tt.header, u0, u1)
    		if got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top