Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for onetmp (0.18 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.3"))[0].Address.GetWorkload().Waypoint.GetAddress().Address,
    		netip.MustParseAddr("10.0.0.2").AsSlice())
    
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.4"))[0].Address.GetWorkload().Waypoint.GetAddress().Address,
    		netip.MustParseAddr("10.0.0.3").AsSlice())
    
    	// Lookup for service VIP should return Workload and Service AddressInfo objects
    	assert.Equal(t,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// we can reuse for temporary space (saTmp).
    	// When recurse_64 is called from sais_8_64, oldTmp is length 512
    	// (from text_64), and saTmp will typically be much larger, so we'll use saTmp.
    	// When deeper recursions come back to recurse_64, now oldTmp is
    	// the saTmp from the top-most recursion, it is typically larger than
    	// the current saTmp (because the current sa gets smaller and smaller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    			}
    
    			return r, nil
    		},
    	}
    
    	r := &Resolver{PreferGo: true, Dial: fake.DialContext}
    
    	methodTests := []string{"CNAME", "Host", "IP", "IPAddr", "MX", "NS", "NetIP", "SRV", "TXT"}
    	query := func(t string, req string) error {
    		switch t {
    		case "CNAME":
    			_, err := r.LookupCNAME(context.Background(), req)
    			return err
    		case "Host":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package gateway
    
    import (
    	"crypto/tls"
    	"fmt"
    	"net"
    	"net/netip"
    	"sort"
    	"strconv"
    	"strings"
    	"time"
    
    	"google.golang.org/protobuf/types/known/durationpb"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	klabels "k8s.io/apimachinery/pkg/labels"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. src/net/netip/netip_test.go

    // license that can be found in the LICENSE file.
    
    package netip_test
    
    import (
    	"bytes"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"internal/testenv"
    	"net"
    	. "net/netip"
    	"reflect"
    	"slices"
    	"strings"
    	"testing"
    	"unique"
    )
    
    var long = flag.Bool("long", false, "run long tests")
    
    type uint128 = Uint128
    
    var (
    	mustPrefix = MustParsePrefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top