Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for logback (0.22 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                    containsString("guava-21.0.jar"),
                    containsString("logback-classic-1.2.3.jar"),
                    containsString("a/build/classes/java/main"),
                    containsString("b/build/classes/java/main"),
                    not(containsString("logback-core")),
                    not(containsString("commons-io"))
                )
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. pom.xml

            <artifactId>slf4j-simple</artifactId>
            <version>${slf4jVersion}</version>
            <optional>true</optional>
          </dependency>
          <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>${logbackClassicVersion}</version>
            <optional>true</optional>
          </dependency>
          <!--  Wagon -->
          <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			ExpectedCertIndex: 0,
    		},
    		"loopback: LoopbackClientServerNameOverride on SNI cert": {
    			Cert: TestCertSpec{
    				host: "localhost",
    			},
    			SNICerts: []NamedTestCertSpec{
    				{
    					TestCertSpec: TestCertSpec{
    						host: server.LoopbackClientServerNameOverride,
    					},
    				},
    			},
    			ExpectedCertIndex: -1,
    		},
    		"loopback: bind to 0.0.0.0 => loopback uses localhost": {
    			Cert: TestCertSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. pkg/proxy/util/nodeport_addresses_test.go

    		},
    		{
    			name:        "ipv4 loopback",
    			cidrStrings: []string{"224.0.0.0/24", "192.168.0.0/16", "fd00:1:d::/64", "127.0.0.0/8"},
    			want:        true,
    		},
    		{
    			name:        "ipv6 loopback",
    			cidrStrings: []string{"224.0.0.0/24", "192.168.0.0/16", "fd00:1:d::/64", "::1/128"},
    			want:        false,
    		},
    		{
    			name:        "ipv4 loopback smaller range",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    2021-08-12T12:01:50.771+0200 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Is this a loopback interface? true
    2021-08-12T12:01:50.771+0200 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Adding loopback address /0:0:0:0:0:0:0:1%lo
    2021-08-12T12:01:50.771+0200 [DEBUG] [org.gradle.internal.remote.internal.inet.InetAddresses] Adding loopback address /127.0.0.1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/run.go

    			// Envoy. Any packet entering this chain gets marked with the ${INBOUND_TPROXY_MARK} mark,
    			// so that they get routed to the loopback interface in order to get redirected to Envoy.
    			// In the ISTIOINBOUND chain, '-j ISTIODIVERT' reroutes to the loopback
    			// interface.
    			// Mark all inbound packets.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. pkg/proxy/metrics/metrics.go

    	// by iptables which were destined for nodeports on loopback interface.
    	localhostNodePortsAcceptedPacketsDescription = metrics.NewDesc(
    		"kubeproxy_iptables_localhost_nodeports_accepted_packets_total",
    		"Number of packets accepted on nodeports of loopback interface",
    		nil, nil, metrics.ALPHA, "")
    	LocalhostNodePortAcceptedNFAcctCounter     = "localhost_nps_accepted_pkts"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/config.go

    // if the loopback client config is specified AND it has a bearer token. Note that if either authn or
    // authz is nil, this function won't add a token authenticator or authorizer.
    func AuthorizeClientBearerToken(loopback *restclient.Config, authn *AuthenticationInfo, authz *AuthorizationInfo) {
    	if loopback == nil || len(loopback.BearerToken) == 0 {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/common.go

    	// use only link-local addresses (e.g. as described in RFC5549).
    	// In many cases that matching global unicast IP address can be found on loopback interface,
    	// so kubeadm allows users to specify address=Loopback for handling supporting the scenario above.
    	// Nb. SetAPIEndpointDynamicDefaults will try to translate loopback to a valid address afterwards
    	if ip.IsLoopback() {
    		return nil
    	}
    	if !ip.IsGlobalUnicast() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/config/initconfiguration.go

    		return errors.Errorf("couldn't use \"%s\" as \"apiserver-advertise-address\", must be ipv4 or ipv6 address", cfg.AdvertiseAddress)
    	}
    
    	// kubeadm allows users to specify address=Loopback as a selector for global unicast IP address that can be found on loopback interface.
    	// e.g. This is required for network setups where default routes are present, but network interfaces use only link-local addresses (e.g. as described in RFC5549).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top