Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for portnet (0.19 sec)

  1. docs/en/data/github_sponsors.yml

    sponsors:
    - - login: bump-sh
        avatarUrl: https://avatars.githubusercontent.com/u/33217836?v=4
        url: https://github.com/bump-sh
      - login: porter-dev
        avatarUrl: https://avatars.githubusercontent.com/u/62078005?v=4
        url: https://github.com/porter-dev
      - login: andrew-propelauth
        avatarUrl: https://avatars.githubusercontent.com/u/89474256?u=1188c27cb744bbec36447a2cfd4453126b2ddb5c&v=4
        url: https://github.com/andrew-propelauth
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. src/go/build/read.go

    	}
    
    	return nil
    }
    
    // isValidImport checks if the import is a valid import using the more strict
    // checks allowed by the implementation restriction in https://go.dev/ref/spec#Import_declarations.
    // It was ported from the function of the same name that was removed from the
    // parser in CL 424855, when the parser stopped doing these checks.
    func isValidImport(s string) bool {
    	const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	list := []string{}
    	max := 3
    	more := false
    	count := 0
    	for _, port := range ports {
    		if len(list) < max {
    			portNum := "*"
    			if port.Port != nil {
    				portNum = strconv.Itoa(int(*port.Port))
    			} else if port.Name != nil {
    				portNum = *port.Name
    			}
    			list = append(list, portNum)
    		} else if len(list) == max {
    			more = true
    		}
    		count++
    	}
    	return listWithMoreString(list, more, count, max)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. src/runtime/metrics_test.go

    		delayMicros := delay.Microseconds()
    
    		// The goroutine that acquires the lock will only proceed when it
    		// detects that its partner is contended for the lock. That will lead to
    		// live-lock if anything (such as a STW) prevents the partner goroutine
    		// from running. Allowing the contention workers to pause and restart
    		// (to allow a STW to proceed) makes it harder to confirm that we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. src/runtime/chan.go

    	racereleaseg(sg.g, chanbuf(c, 0))
    	raceacquire(chanbuf(c, 0))
    }
    
    // Notify the race detector of a send or receive involving buffer entry idx
    // and a channel c or its communicating partner sg.
    // This function handles the special case of c.elemsize==0.
    func racenotify(c *hchan, idx uint, sg *sudog) {
    	// We could have passed the unsafe.Pointer corresponding to entry idx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. pkg/api/pod/util.go

    		// if old spec has an invalid projected token volume path, we must allow it
    		opts.AllowNonLocalProjectedTokenPath = hasNonLocalProjectedTokenPath(oldPodSpec)
    
    		// if old spec has invalid sysctl with hostNet or hostIPC, we must allow it when update
    		if oldPodSpec.SecurityContext != nil && len(oldPodSpec.SecurityContext.Sysctls) != 0 {
    			for _, s := range oldPodSpec.SecurityContext.Sysctls {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	// alpha: v1.22
    	// beta1: v1.28 (default=false)
    	// beta2: v.1.30 (default=true)
    
    	// Permits kubelet to run with swap enabled.
    	NodeSwap featuregate.Feature = "NodeSwap"
    
    	// owner: @mortent, @atiratree, @ravig
    	// kep: http://kep.k8s.io/3018
    	// alpha: v1.26
    	// beta: v1.27
    	//
    	// Enables PDBUnhealthyPodEvictionPolicy for PodDisruptionBudgets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/jar_test.go

    // Some of the original tests are in a bad condition (e.g.
    // DomainWithTrailingDotTest) or are not RFC 6265 conforming (e.g.
    // TestNonDottedAndTLD #1 and #6) and have not been ported.
    
    // chromiumBasicsTests contains fundamental tests. Each jarTest has to be
    // performed on a fresh, empty Jar.
    var chromiumBasicsTests = [...]jarTest{
    	{
    		"DomainWithTrailingDotTest.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      #   -rw------- 1 root root 1.3K Oct 12 00:56 kubelet.crt
      #   -rw------- 1 root root 1.7K Oct 12 00:56 kubelet.key
      # Windows:
      #   https://docs.microsoft.com/en-us/dotnet/api/system.io.fileattributes
      #   https://docs.microsoft.com/en-us/dotnet/api/system.io.fileattributes
    }
    
    # Creates the node PKI files in $env:PKI_DIR.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    	AllowInvalidTopologySpreadConstraintLabelSelector bool
    	// Allow projected token volumes with non-local paths
    	AllowNonLocalProjectedTokenPath bool
    	// Allow namespaced sysctls in hostNet and hostIPC pods
    	AllowNamespacedSysctlsForHostNetAndHostIPC bool
    	// The top-level resource being validated is a Pod, not just a PodSpec
    	// embedded in some other resource.
    	ResourceIsPod bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top