Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,491 for FRAMEWORK (0.13 sec)

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

    package security
    
    import (
    	"strings"
    	"testing"
    
    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/echotest"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/tests/common/jwt"
    	"istio.io/istio/tests/integration/security/util"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/fit.go

    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    	schedutil "k8s.io/kubernetes/pkg/scheduler/util"
    )
    
    var _ framework.PreFilterPlugin = &Fit{}
    var _ framework.FilterPlugin = &Fit{}
    var _ framework.EnqueueExtensions = &Fit{}
    var _ framework.PreScorePlugin = &Fit{}
    var _ framework.ScorePlugin = &Fit{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. android/guava/javadoc-link/checker-framework/package-list

    org.checkerframework.dataflow.util
    org.checkerframework.framework.flow
    org.checkerframework.framework.qual
    org.checkerframework.framework.source
    org.checkerframework.framework.test
    org.checkerframework.framework.test.diagnostics
    org.checkerframework.framework.type
    org.checkerframework.framework.type.treeannotator
    org.checkerframework.framework.type.typeannotator
    org.checkerframework.framework.type.visitor
    org.checkerframework.framework.util
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    		nodeName            string
    		wantStatus          *framework.Status
    		wantPreFilterStatus *framework.Status
    		wantPreFilterResult *framework.PreFilterResult
    		args                config.NodeAffinityArgs
    		runPreFilter        bool
    	}{
    		{
    			name: "missing labels",
    			pod: st.MakePod().NodeSelector(map[string]string{
    				"foo": "bar",
    			}).Obj(),
    			wantStatus:   framework.NewStatus(framework.UnschedulableAndUnresolvable, ErrReasonPod),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			},
    			wantFilterStatuses: []*framework.Status{
    				framework.NewStatus(
    					framework.UnschedulableAndUnresolvable,
    					ErrReasonAffinityRulesNotMatch,
    				),
    				framework.NewStatus(
    					framework.UnschedulableAndUnresolvable,
    					ErrReasonAffinityRulesNotMatch,
    				),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  6. tests/util/sanitycheck/sanity_check.go

    import (
    	"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/check"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 26 21:20:56 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. tests/integration/security/external_ca/reachability_test.go

    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/echotest"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    )
    
    // TestReachability verifies:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		disable bool
    	}{
    		"empty": {
    			pod: st.MakePod().Name("foo").Namespace("default").Obj(),
    			want: want{
    				prefilter: result{
    					status: framework.NewStatus(framework.Skip),
    				},
    				postfilter: result{
    					status: framework.NewStatus(framework.Unschedulable, `no new claims to deallocate`),
    				},
    			},
    		},
    		"claim-reference": {
    			pod:    podWithClaimName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/examples/prebind/prebind.go

    }
    
    // PreBind is the functions invoked by the framework at "prebind" extension point.
    func (sr StatelessPreBindExample) PreBind(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) *framework.Status {
    	if pod == nil {
    		return framework.NewStatus(framework.Error, "pod cannot be nil")
    	}
    	if pod.Namespace != "foo" {
    		return framework.NewStatus(framework.Unschedulable, "only pods from 'foo' namespace are allowed")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/JvmTestSuite.java

        /**
         * Use the <a href="https://spockframework.org/">Spock Framework</a> testing framework.
         * <p>
         *     Gradle will provide the version of Spock to use. Defaults to version {@code 2.2-groovy-3.0}
         * </p>
         */
        void useSpock();
    
        /**
         * Use the <a href="https://spockframework.org/">Spock Framework</a> testing framework with a specific version.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top