Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,571 for GO (0.08 sec)

  1. pkg/webhooks/validation/controller/controller_test.go

    	"errors"
    	"fmt"
    	"testing"
    	"time"
    
    	"go.uber.org/atomic"
    	admission "k8s.io/api/admissionregistration/v1"
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	ktesting "k8s.io/client-go/testing"
    
    	"istio.io/api/label"
    	"istio.io/client-go/pkg/apis/networking/v1alpha3"
    	istiofake "istio.io/client-go/pkg/clientset/versioned/fake"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 03:21:04 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/debug/gosym/pclntab.go

    }
    
    // Go 1.2 symbol table format.
    // See golang.org/s/go12symtab.
    //
    // A general note about the methods here: rather than try to avoid
    // index out of bounds errors, we trust Go to detect them, and then
    // we recover from the panics and treat them as indicative of a malformed
    // or incomplete table.
    //
    // The methods called by symtab.go, which begin with "go12" prefixes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. hack/tools/go.mod

    	github.com/go-critic/go-critic v0.11.1 // indirect
    	github.com/go-toolsmith/astcast v1.1.0 // indirect
    	github.com/go-toolsmith/astcopy v1.1.0 // indirect
    	github.com/go-toolsmith/astequal v1.2.0 // indirect
    	github.com/go-toolsmith/astfmt v1.1.0 // indirect
    	github.com/go-toolsmith/astp v1.1.0 // indirect
    	github.com/go-toolsmith/strparse v1.1.0 // indirect
    	github.com/go-toolsmith/typep v1.1.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/net/ip_test.go

    		{"[::1%lo0]:80", "::1%lo0", "80"},
    
    		// Go-specific wildcard for host name
    		{":http", "", "http"}, // Go 1 behavior
    		{":80", "", "80"},     // Go 1 behavior
    
    		// Go-specific wildcard for service name or transport port number
    		{"golang.org:", "golang.org", ""}, // Go 1 behavior
    		{"127.0.0.1:", "127.0.0.1", ""},   // Go 1 behavior
    		{"[::1]:", "::1", ""},             // Go 1 behavior
    
    		// Opaque service name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. src/net/server_test.go

    func TestUnixAndUnixpacketServer(t *testing.T) {
    	var unixAndUnixpacketServerTests = []struct {
    		network, address string
    	}{
    		{"unix", testUnixAddr(t)},
    		{"unix", "@nettest/go/unix"},
    
    		{"unixpacket", testUnixAddr(t)},
    		{"unixpacket", "@nettest/go/unixpacket"},
    	}
    
    	const N = 3
    
    	for i, tt := range unixAndUnixpacketServerTests {
    		if !testableListenArgs(tt.network, tt.address, "") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. internal/dsync/dsync_test.go

    	started := time.Now()
    	var expect time.Duration
    	// Release lock after 10 seconds
    	go func() {
    		// TOTAL
    		time.Sleep(2 * testDrwMutexAcquireTimeout)
    		// fmt.Println("Unlocking dm1")
    
    		dm1st.Unlock(context.Background())
    	}()
    	expect += 2 * testDrwMutexAcquireTimeout
    
    	var wg sync.WaitGroup
    	wg.Add(2)
    
    	go func() {
    		defer wg.Done()
    
    		dm2nd.Lock(id, source)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 24 03:49:07 UTC 2022
    - 11K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/stdlib_test.go

    		"bug248.go", "bug302.go", "bug369.go", // complex test instructions - ignore
    		"bug398.go",      // types2 doesn't check for anonymous interface cycles (go.dev/issue/56103)
    		"issue6889.go",   // gc-specific test
    		"issue11362.go",  // canonical import path check
    		"issue16369.go",  // types2 handles this correctly - not an issue
    		"issue18459.go",  // types2 doesn't check validity of //go:xxx directives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. samples/extauthz/cmd/extauthz/main.go

    	"sync"
    	"syscall"
    
    	corev2 "github.com/envoyproxy/go-control-plane/envoy/api/v2/core"
    	corev3 "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	authv2 "github.com/envoyproxy/go-control-plane/envoy/service/auth/v2"
    	authv3 "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3"
    	typev2 "github.com/envoyproxy/go-control-plane/envoy/type"
    	typev3 "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/imports/build.go

    // Copyright 2018 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.
    
    // Copied from Go distribution src/go/build/build.go, syslist.go.
    // That package does not export the ability to process raw file data,
    // although we could fake it with an appropriate build.Context
    // and a lot of unwrapping.
    // More importantly, that package does not implement the tags["*"]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/vendor.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package modcmd
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"go/build"
    	"io"
    	"io/fs"
    	"os"
    	"path"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/gover"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top