Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for logback (0.33 sec)

  1. gradle/verification-metadata.xml

             <trusted-key id="47504B76CF89C15C0512D9AFE16AB52D79FD224F" group="^com[.]google($|([.].*))" regex="true"/>
             <trusted-key id="475F3B8E59E6E63AA78067482C7B12F2A511E325">
                <trusting group="ch.qos.logback"/>
                <trusting group="org.slf4j"/>
                <trusting group="org.slf4j" name="slf4j-api"/>
             </trusted-key>
             <trusted-key id="4DB1A49729B053CAF015CEE9A6ADFC93EF34893E" group="org.hamcrest"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    			linkLocalUnicast: true,
    		},
    		{
    			name:     "loopback v4Addr",
    			ip:       loopback4,
    			loopback: true,
    		},
    		{
    			name:     "loopback v6Addr",
    			ip:       IPv6Loopback(),
    			loopback: true,
    		},
    		{
    			name:     "loopback v6 mapped v4Addr",
    			ip:       AddrFrom16(IPv6Loopback().As16()),
    			loopback: true,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. src/math/all_test.go

    		}
    	}
    	for i := 0; i < len(vflogbSC); i++ {
    		if f := Logb(vflogbSC[i]); !alike(logbSC[i], f) {
    			t.Errorf("Logb(%g) = %g, want %g", vflogbSC[i], f, logbSC[i])
    		}
    	}
    	for i := 0; i < len(vffrexpBC); i++ {
    		if f := Logb(vffrexpBC[i]); !alike(logbBC[i], f) {
    			t.Errorf("Logb(%g) = %g, want %g", vffrexpBC[i], f, logbBC[i])
    		}
    	}
    }
    
    func TestLog10(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

        rm -rf "${cni_plugin_tarball}" &&
        sudo find /opt/cni/bin -type f -not \( \
            -iname host-local \
            -o -iname bridge \
            -o -iname portmap \
            -o -iname loopback \
            \) \
            -delete
    
      # containerd 1.4.12 installed by docker in kubekins supports CNI version 0.4.0
      echo "Configuring cni"
      sudo mkdir -p "$CNI_CONFIG_DIR"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. cmd/peer-rest-server.go

    	err = globalConsoleSys.Subscribe(ch, ctx.Done(), "", 0, madmin.LogMask(mask), nil)
    	if err != nil {
    		return grid.NewRemoteErr(err)
    	}
    	var buf bytes.Buffer
    	enc := json.NewEncoder(&buf)
    	for {
    		select {
    		case entry, ok := <-ch:
    			if !ok {
    				return grid.NewRemoteErrString("console log channel closed")
    			}
    			if !entry.SendLog("", madmin.LogMask(mask)) {
    				continue
    			}
    			buf.Reset()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    		// Bind IP + Port is specified, we will bind to the specified IP and Port.
    		// This specified IP is ideally expected to be a loopback IP.
    		//
    		// If capture mode is NONE i.e., bindToPort is true, and
    		// only Port is specified, we will bind to the default loopback IP
    		// 127.0.0.1 and the specified Port.
    		//
    		// If capture mode is NONE, i.e., bindToPort is true, and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    	if localhostNodePorts {
    		// Set the route_localnet sysctl we need for exposing NodePorts on loopback addresses
    		// Refer to https://issues.k8s.io/90259
    		logger.Info("Setting route_localnet=1 to allow node-ports on localhost; to change this either disable iptables.localhostNodePorts (--iptables-localhost-nodeports) or set nodePortAddresses (--nodeport-addresses) to filter loopback addresses")
    		if err := proxyutil.EnsureSysctl(sysctl, sysctlRouteLocalnet, 1); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    		},
    		{
    			name:        "Invalid single --node-ip (using loopback)",
    			nodeIPs:     []net.IP{netutils.ParseIPSloppy("127.0.0.1")},
    			shouldError: true,
    		},
    		{
    			name:    "Dual --node-ips",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Kube-controller-manager removes deprecated command flags: --volume-host-cidr-denylist and --volume-host-allow-local-loopback ([#124017](https://github.com/kubernetes/kubernetes/pull/124017), [@carlory](https://github.com/carlory)) [SIG API Machinery, Apps, Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	// Guests have a unique CID, and hosts may have a well-known CID of:
    	//  - VMADDR_CID_HYPERVISOR: refers to the hypervisor process.
    	//  - VMADDR_CID_LOCAL: refers to local communication (loopback).
    	//  - VMADDR_CID_HOST: refers to other processes on the host.
    	CID   uint32
    	Port  uint32
    	Flags uint8
    	raw   RawSockaddrVM
    }
    
    func (sa *SockaddrVM) sockaddr() (unsafe.Pointer, _Socklen, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top