Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 314 for vips (0.04 sec)

  1. src/internal/syscall/unix/sysnum_linux_mipsx.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build mips || mipsle
    
    package unix
    
    const (
    	getrandomTrap       uintptr = 4353
    	copyFileRangeTrap   uintptr = 4360
    	pidfdSendSignalTrap uintptr = 4424
    	pidfdOpenTrap       uintptr = 4434
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 355 bytes
    - Viewed (0)
  2. src/net/resolverdialfunc_test.go

    		}
    		if !reflect.DeepEqual(got, want) {
    			t.Errorf("wrong result. got:")
    			for _, r := range got {
    				t.Logf("  - %+v", r)
    			}
    		}
    	})
    }
    
    func sortedIPStrings(ips []IP) []string {
    	ret := make([]string, len(ips))
    	for i, ip := range ips {
    		ret[i] = ip.String()
    	}
    	slices.Sort(ret)
    	return ret
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. cmd/net.go

    		// This case is needed when all ips in the list
    		// have same last octets, Following just ensures that
    		// 127.0.0.1 is moved to the end of the list.
    		if ipV4s[i].IsLoopback() {
    			return false
    		}
    		if ipV4s[j].IsLoopback() {
    			return true
    		}
    		return []byte(ipV4s[i].To4())[3] > []byte(ipV4s[j].To4())[3]
    	})
    
    	var ips []string
    	for _, ip := range ipV4s {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_waypoint.go

    		if c.TransportSocket != nil && c.TransportSocketMatches != nil {
    			log.Errorf("invalid cluster, multiple matches: %v", c.Name)
    		}
    	}
    	return clusters
    }
    
    // `inbound-vip||hostname|port`. EDS routing to the internal listener for each pod in the VIP.
    func (cb *ClusterBuilder) buildWaypointInboundVIPCluster(proxy *model.Proxy, svc *model.Service, port model.Port, subset string) *clusterWrapper {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadelf/ldelf.go

    		MIPS | uint32(elf.R_MIPS_GOT16)<<16,
    		MIPS | uint32(elf.R_MIPS_GOT_HI16)<<16,
    		MIPS | uint32(elf.R_MIPS_GOT_LO16)<<16,
    		MIPS | uint32(elf.R_MIPS_GPREL16)<<16,
    		MIPS | uint32(elf.R_MIPS_GOT_PAGE)<<16,
    		MIPS | uint32(elf.R_MIPS_JALR)<<16,
    		MIPS | uint32(elf.R_MIPS_GOT_OFST)<<16,
    		MIPS64 | uint32(elf.R_MIPS_HI16)<<16,
    		MIPS64 | uint32(elf.R_MIPS_LO16)<<16,
    		MIPS64 | uint32(elf.R_MIPS_GOT16)<<16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/net.go

    // K8S may get a pod Add event without any IPs in the object, and the pod will later be updated with IPs.
    //
    // We always need the IPs, but this is fine because this AddPodToMesh can be called from the CNI plugin as well,
    // which always has the firsthand info of the IPs, even before K8S does - so we pass them separately here because
    // we actually may have them before K8S in the Pod object.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/crypto/aes/block.go

    //	OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    //	EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    //
    // See FIPS 197 for specification, and see Daemen and Rijmen's Rijndael submission
    // for implementation details.
    //	https://csrc.nist.gov/csrc/media/publications/fips/197/final/documents/fips-197.pdf
    //	https://csrc.nist.gov/archive/aes/rijndael/Rijndael-ammended.pdf
    
    package aes
    
    import "internal/byteorder"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pilot/pkg/xds/nds_test.go

    				Table: map[string]*dnsProto.NameTable_NameInfo{
    					"random-1.host.example": {
    						Ips:      []string{"240.240.116.21"},
    						Registry: "External",
    					},
    					"random-2.host.example": {
    						Ips:      []string{"9.9.9.9"},
    						Registry: "External",
    					},
    					"random-3.host.example": {
    						Ips:      []string{"240.240.81.100"},
    						Registry: "External",
    					},
    				},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/net/ipsock.go

    	ips, err := r.lookupIPAddr(ctx, net, host)
    	if err != nil {
    		return nil, err
    	}
    	// Issue 18806: if the machine has halfway configured
    	// IPv6 such that it can bind on "::" (IPv6unspecified)
    	// but not connect back to that same address, fall
    	// back to dialing 0.0.0.0.
    	if len(ips) == 1 && ips[0].IP.Equal(IPv6unspecified) {
    		ips = append(ips, IPAddr{IP: IPv4zero})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. cmd/utils.go

    	}
    
    	if secureCiphers := env.Get(api.EnvAPISecureCiphers, config.EnableOn) == config.EnableOn; secureCiphers {
    		tlsConfig.CipherSuites = fips.TLSCiphers()
    	} else {
    		tlsConfig.CipherSuites = fips.TLSCiphersBackwardCompatible()
    	}
    	tlsConfig.CurvePreferences = fips.TLSCurveIDs()
    	return tlsConfig
    }
    
    /////////// Types and functions for OpenID IAM testing
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top