Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,089 for net (0.03 sec)

  1. src/net/mail/message_test.go

    		2:  {string([]byte{0xed, 0xa0, 0x80}) + " <micro@example.net>", "invalid utf-8 in address"},
    		3:  {"\"" + string([]byte{0xed, 0xa0, 0x80}) + "\" <******@****.***>", "invalid utf-8 in quoted-string"},
    		4:  {"\"\\" + string([]byte{0x80}) + "\" <escaped-invalid-unicode@example.net>", "invalid utf-8 in quoted-string"},
    		5:  {"\"\x00\" <null@example.net>", "bad character in quoted-string"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. pkg/controlplane/instance.go

    	ServiceIPRange net.IPNet
    	// The IP address for the GenericAPIServer service (must be inside ServiceIPRange)
    	APIServerServiceIP net.IP
    
    	// dual stack services, the range represents an alternative IP range for service IP
    	// must be of different family than primary (ServiceIPRange)
    	SecondaryServiceIPRange net.IPNet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/controller/repair_test.go

    	return fake.NewSimpleClientset()
    }
    func makeIPNet(cidr string) *net.IPNet {
    	_, net, _ := netutils.ParseCIDRSloppy(cidr)
    	return net
    }
    func TestShouldWorkOnSecondary(t *testing.T) {
    	testCases := []struct {
    		name             string
    		expectedFamilies []corev1.IPFamily
    		primaryNet       *net.IPNet
    		secondaryNet     *net.IPNet
    	}{
    		{
    			name:             "primary only (v4)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    package filters
    
    import (
    	"bytes"
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"encoding/json"
    	"fmt"
    	"io/ioutil"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"net/http/httptrace"
    	"reflect"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"golang.org/x/net/http2"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

     */
    @file:Suppress("ktlint:standard:filename")
    
    package okhttp3.internal
    
    import java.io.IOException
    import java.io.InterruptedIOException
    import java.net.InetSocketAddress
    import java.net.ServerSocket
    import java.net.Socket
    import java.net.SocketTimeoutException
    import java.nio.charset.Charset
    import java.util.Collections
    import java.util.Locale
    import java.util.TimeZone
    import java.util.concurrent.ThreadFactory
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/crypto/x509/verify.go

    						}, c.PermittedURIDomains, c.ExcludedURIDomains); err != nil {
    						return err
    					}
    
    				case nameTypeIP:
    					ip := net.IP(data)
    					if l := len(ip); l != net.IPv4len && l != net.IPv6len {
    						return fmt.Errorf("x509: internal error: IP SAN %x failed to parse", data)
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. cmd/kube-scheduler/app/server_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package app
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"os"
    	"path/filepath"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/spf13/pflag"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

    import java.io.IOException
    import java.security.SecureRandom
    import java.security.cert.X509Certificate
    import javax.net.ssl.KeyManager
    import javax.net.ssl.SSLHandshakeException
    import javax.net.ssl.SSLPeerUnverifiedException
    import javax.net.ssl.SSLSocketFactory
    import javax.net.ssl.TrustManager
    import kotlin.test.assertFailsWith
    import mockwebserver3.MockResponse
    import mockwebserver3.MockWebServer
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. src/net/http/cookiejar/jar_test.go

    	// malformed internationalized domain names are missing.)
    	".":                       "",
    	"..":                      ".",
    	"...":                     "..",
    	".net":                    ".net",
    	".net.":                   ".net",
    	"a..":                     "a.",
    	"b.a..":                   "b.a.",
    	"weird.stuff...":          "weird.stuff..",
    	"[bad.unmatched.bracket:": "error",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    limitations under the License.
    */
    
    package renewal
    
    import (
    	"crypto"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"fmt"
    	"net"
    	"os"
    	"path/filepath"
    	"reflect"
    	"testing"
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	certutil "k8s.io/client-go/util/cert"
    	netutils "k8s.io/utils/net"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top