Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for vips (0.09 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

      # Windows node, the reverse SNAT will be applied and the source address of
      # the packet gets replaced from the pod IP to the service VIP. The packet
      # will then leave the VM and return back through hairpinning.
      #
      # When IP alias is enabled, IP forwarding is disabled for anti-spoofing;
      # the packet with the service VIP will get blocked and be lost. With this
      # route, the packet will be routed to the pod subnetwork, and not leave the
      # VM.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		}()
    	}
    
    	time.Sleep(dur)
    	close(stop)
    	wg.Wait()
    }
    
    // Check that there is no deadlock when the program receives SIGPROF while in
    // 64bit atomics' critical section. Used to happen on mips{,le}. See #20146.
    func TestAtomicLoadStore64(t *testing.T) {
    	f, err := os.CreateTemp("", "profatomic")
    	if err != nil {
    		t.Fatalf("TempFile: %v", err)
    	}
    	defer os.Remove(f.Name())
    	defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	return p.resource(sectionAnswers)
    }
    
    // AllAnswers parses all Answer Resources.
    func (p *Parser) AllAnswers() ([]Resource, error) {
    	// The most common query is for A/AAAA, which usually returns
    	// a handful of IPs.
    	//
    	// Pre-allocate up to a certain limit, since p.header is
    	// untrusted data.
    	n := int(p.header.answers)
    	if n > 20 {
    		n = 20
    	}
    	as := make([]Resource, 0, n)
    	for {
    		a, err := p.Answer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Apache Commons Compress has been updated from 1.21 to https://commons.apache.org/proper/commons-compress/changes-report.html#a1.25.0[1.25.0].
    This change may affect the checksums of the produced jars, zips, and other archive types because the metadata of the produced artifacts may differ.
    
    ==== Upgrade to ASM 9.6
    
    ASM was upgraded from 9.5 to https://asm.ow2.io/versions.html[9.6] for better support of multi-release jars.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    		if buildcfg.GOOS == "darwin" {
    			return []string{"-arch", "arm64"}
    		}
    	case sys.Loong64:
    		return []string{"-mabi=lp64d"}
    	case sys.MIPS64:
    		return []string{"-mabi=64"}
    	case sys.MIPS:
    		return []string{"-mabi=32"}
    	case sys.PPC64:
    		if buildcfg.GOOS == "aix" {
    			return []string{"-maix64"}
    		} else {
    			return []string{"-m64"}
    		}
    
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    		hostname:  hostname,
    		namespace: namespace,
    	}]
    }
    
    // SupportsTunnel checks if a given IP address supports tunneling.
    // This currently only accepts workload IPs as arguments; services will always return "false".
    func (ps *PushContext) SupportsTunnel(n network.ID, ip string) bool {
    	// There should be a 1:1 relationship between IP and Workload but the interface doesn't allow this lookup.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	case "mips64", "mips64le":
    		if gomips64 == "hardfloat" {
    			return []string{"-mabi=64", "-mhard-float"}
    		} else if gomips64 == "softfloat" {
    			return []string{"-mabi=64", "-msoft-float"}
    		}
    	case "mips", "mipsle":
    		if gomips == "hardfloat" {
    			return []string{"-mabi=32", "-mfp32", "-mhard-float", "-mno-odd-spreg"}
    		} else if gomips == "softfloat" {
    			return []string{"-mabi=32", "-msoft-float"}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top