Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for config2 (0.2 sec)

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

    	"istio.io/istio/pilot/pkg/config/kube/crd"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pilot/test/util"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/schema/gvr"
    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. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	clienttesting "k8s.io/client-go/testing"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/klog/v2/ktesting"
    	kubeschedulerconfigv1 "k8s.io/kube-scheduler/config/v1"
    	extenderv1 "k8s.io/kube-scheduler/extender/v1"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	configv1 "k8s.io/kubernetes/pkg/scheduler/apis/config/v1"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/parallelize"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    		// #cgo pkg-config: --static a
    		import "C"
    	`)
    	tg.tempFile("src/x/b.go", `package x
    		// #cgo pkg-config: --static a
    		import "C"
    	`)
    	tg.tempFile("pkg-config.sh", `#!/bin/sh
    echo $* >>`+tg.path("pkg-config.out"))
    	tg.must(os.Chmod(tg.path("pkg-config.sh"), 0755))
    	tg.setenv("GOPATH", tg.path("."))
    	tg.setenv("PKG_CONFIG", tg.path("pkg-config.sh"))
    	tg.run("build", "x")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_tls_test.go

    // limitations under the License.
    
    package core
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    	"time"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    	handshakeMutex sync.Mutex
    	handshakeErr   error   // error resulting from handshake
    	vers           uint16  // TLS version
    	haveVers       bool    // version has been negotiated
    	config         *Config // configuration passed to constructor
    	// handshakes counts the number of handshakes performed on the
    	// connection so far. If renegotiation is disabled then this is either
    	// zero or one.
    	handshakes       int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/visibility"
    	kubelib "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient/clienttest"
    	"istio.io/istio/pkg/network"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. pkg/volume/testing/testing.go

    		return []byte(o), nil, e
    	}
    }
    
    func ProbeVolumePlugins(config volume.VolumeConfig) []volume.VolumePlugin {
    	if _, ok := config.OtherAttributes["fake-property"]; ok {
    		return []volume.VolumePlugin{
    			&FakeVolumePlugin{
    				PluginName: "fake-plugin",
    				Host:       nil,
    				// SomeFakeProperty: config.OtherAttributes["fake-property"] -- string, may require parsing by plugin
    			},
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/time/time_test.go

    		t := UnixMilli(msec)
    		return t.UnixMilli() == msec
    	}
    	cfg := &quick.Config{MaxCount: 10000}
    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestUnixMicro(t *testing.T) {
    	f := func(usec int64) bool {
    		t := UnixMicro(usec)
    		return t.UnixMicro() == usec
    	}
    	cfg := &quick.Config{MaxCount: 10000}
    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. cmd/erasure-healing_test.go

    	"errors"
    	"io"
    	"os"
    	"path"
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	uuid2 "github.com/google/uuid"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/config/storageclass"
    )
    
    // Tests isObjectDangling function
    func TestIsObjectDangling(t *testing.T) {
    	fi := newFileInfo("test-object", 2, 2)
    	fi.Erasure.Index = 1
    
    	ifi := newFileInfo("test-object", 2, 2)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    	"github.com/minio/minio/internal/config/dns"
    	"github.com/minio/minio/internal/crypto"
    	"github.com/minio/minio/internal/kms"
    	"github.com/minio/minio/internal/logger"
    
    	objectlock "github.com/minio/minio/internal/bucket/object/lock"
    	"github.com/minio/minio/internal/bucket/versioning"
    	levent "github.com/minio/minio/internal/config/lambda/event"
    	"github.com/minio/minio/internal/event"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top