Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for vers (0.12 sec)

  1. src/vendor/golang.org/x/net/nettest/conntest.go

    	"math/rand"
    	"net"
    	"runtime"
    	"sync"
    	"testing"
    	"time"
    )
    
    // MakePipe creates a connection between two endpoints and returns the pair
    // as c1 and c2, such that anything written to c1 is read by c2 and vice-versa.
    // The stop function closes all resources, including c1, c2, and the underlying
    // net.Listener (if there is one), and should not be nil.
    type MakePipe func() (c1, c2 net.Conn, stop func(), err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run.go

    // in two separate conntrack zones to avoid issues with UDP conntrack race conditions.
    // Traffic that goes from istio to DNS servers and vice versa are zone 1 and traffic from
    // DNS client to istio and vice versa goes to zone 2
    func addConntrackZoneDNSUDP(
    	f UDPRuleApplier, proxyUID, proxyGID string, dnsServersV4 []string, dnsServersV6 []string, captureAllDNS bool,
    ) {
    	// TODO: add ip6 as well
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    		// and the types of corresponding elements unify.
    		if y, ok := y.(*Tuple); ok {
    			if x.Len() == y.Len() {
    				if x != nil {
    					for i, v := range x.vars {
    						w := y.vars[i]
    						if !u.nify(v.typ, w.typ, mode, p) {
    							return false
    						}
    					}
    				}
    				return true
    			}
    		}
    
    	case *Signature:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       instances.
       *   <li>For the constructor or static factory method used to construct instances, it's checked
       *       that when equal parameters are passed, the result instance should also be equal; and vice
       *       versa.
       *   <li>Inequality check is not performed against state mutation methods such as {@link
       *       List#add}, or functional update methods such as {@link
       *       com.google.common.base.Joiner#skipNulls}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    		podIPs                                     []string               // the pod IPs
    		expectedEnvs                               []kubecontainer.EnvVar // a set of expected environment vars
    		expectedError                              bool                   // does the test fail
    		expectedEvent                              string                 // does the test emit an event
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. build/common.sh

    # Verify that the right utilities and such are installed for building Kube. Set
    # up some dynamic constants.
    # Args:
    #   $1 - boolean of whether to require functioning docker (default true)
    #
    # Vars set:
    #   KUBE_ROOT_HASH
    #   KUBE_BUILD_IMAGE_TAG_BASE
    #   KUBE_BUILD_IMAGE_TAG
    #   KUBE_BUILD_IMAGE
    #   KUBE_BUILD_CONTAINER_NAME_BASE
    #   KUBE_BUILD_CONTAINER_NAME
    #   KUBE_DATA_CONTAINER_NAME_BASE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    			if _, err := modfetch.DownloadZip(ctx, mActual); err != nil {
    				verb := "upgraded"
    				if gover.ModCompare(m.Path, m.Version, old.Version) < 0 {
    					verb = "downgraded"
    				}
    				replaced := ""
    				if mActual != m {
    					replaced = fmt.Sprintf(" (replaced by %s)", mActual)
    				}
    				err = fmt.Errorf("%s %s %s => %s%s: error finding sum for %s: %v", verb, m.Path, old.Version, m.Version, replaced, mActual, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Tables.java

       * calling {@code get(rowKey, columnKey)} on the original table. Updating the original table
       * changes the contents of the transposed table and vice versa.
       *
       * <p>The returned table supports update operations as long as the input table supports the
       * analogous operation with swapped rows and columns. For example, in a {@link HashBasedTable}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    							Kind:  flowcontrol.SubjectKindGroup,
    							Group: &flowcontrol.GroupSubject{Name: "system:authenticated"},
    						}},
    						ResourceRules: []flowcontrol.ResourcePolicyRule{{
    							Verbs:        all,
    							APIGroups:    all,
    							Resources:    all,
    							ClusterScope: true,
    							Namespaces:   all,
    						}},
    					}, {
    						Subjects: []flowcontrol.Subject{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

                "type": "string"
              },
              "type": "array",
              "x-kubernetes-list-type": "set"
            },
            "verbs": {
              "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.",
              "items": {
                "type": "string"
              },
              "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top