Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,491 for FRAMEWORK (0.12 sec)

  1. tests/integration/security/https_jwt/main_test.go

    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/jwt"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/tmpl"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 09:55:58 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodeunschedulable/node_unschedulable.go

    // failed by this plugin schedulable.
    func (pl *NodeUnschedulable) EventsToRegister() []framework.ClusterEventWithHint {
    	return []framework.ClusterEventWithHint{
    		{Event: framework.ClusterEvent{Resource: framework.Node, ActionType: framework.Add | framework.Update}, QueueingHintFn: pl.isSchedulableAfterNodeChange},
    	}
    }
    
    // isSchedulableAfterNodeChange is invoked for all node events reported by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 12:50:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. tests/integration/helm/install_test.go

    	return baseSetup(overrideValuesStr, isAmbient, config, func(t framework.TestContext) {
    		sanitycheck.RunTrafficTest(t, t)
    	}, revision)
    }
    
    func setupInstallationWithCustomCheck(overrideValuesStr string, isAmbient bool, config NamespaceConfig,
    	check func(t framework.TestContext), revision string,
    ) func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. tensorflow/cc/BUILD

        srcs = [
            "framework/gradients.h",
            "framework/ops.h",
            "framework/scope.h",
            "framework/scope_internal.h",
            "//tensorflow/cc/saved_model:loader.h",
        ],
    )
    
    filegroup(
        name = "srcs",
        srcs = [
            "framework/gradients.h",
            "framework/ops.h",
            "framework/scope.h",
            "framework/scope_internal.h",
            "ops/array_ops.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/registry.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/nodename"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/nodeports"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/noderesources"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/nodeunschedulable"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/nodevolumelimits"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/podtopologyspread"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. pkg/scheduler/eventhandlers_test.go

    		},
    		{
    			name: "add GVKs handlers defined in framework dynamically",
    			gvkMap: map[framework.GVK]framework.ActionType{
    				"Pod":                               framework.Add | framework.Delete,
    				"PersistentVolume":                  framework.Delete,
    				"storage.k8s.io/CSIStorageCapacity": framework.Update,
    			},
    			expectStaticInformers: map[reflect.Type]bool{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. tests/integration/pilot/grpc_probe_test.go

    	"istio.io/api/annotation"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    )
    
    func TestGRPCProbe(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			if !t.Clusters().Default().MinKubeVersion(23) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			},
    			filteredNodesStatuses: framework.NodeToStatusMap{
    				"node1": framework.NewStatus(framework.Unschedulable),
    				"node2": framework.NewStatus(framework.Unschedulable),
    				"node3": framework.NewStatus(framework.Unschedulable),
    			},
    			wantResult: framework.NewPostFilterResultWithNominatedNode(""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. tests/integration/pilot/multicluster_test.go

    	"time"
    
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/test/util/tmpl"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    		maxVols             int32
    		test                string
    		wantStatus          *framework.Status
    		wantPreFilterStatus *framework.Status
    	}{
    		{
    			newPod:           ephemeralVolumePod,
    			ephemeralEnabled: true,
    			test:             "volume missing",
    			wantStatus:       framework.NewStatus(framework.UnschedulableAndUnresolvable, `looking up PVC test/abc-xyz: persistentvolumeclaims "abc-xyz" not found`),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
Back to top