Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 582 for SIMPLE (0.17 sec)

  1. pkg/volume/csi/csi_test.go

    		isInline             bool
    		findPluginShouldFail bool
    		driverSpec           *storage.CSIDriverSpec
    		watchTimeout         time.Duration
    	}{
    		{
    			name:     "PersistentVolume",
    			specName: "pv2",
    			driver:   "simple-driver",
    			volName:  "vol2",
    			specFunc: func(specName, driver, volName string) *volume.Spec {
    				return volume.NewSpecFromPersistentVolume(makeTestPV(specName, 20, driver, volName), false)
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/watch_test.go

    	}
    	return obj
    }
    
    var watchTestTable = []struct {
    	t   watch.EventType
    	obj runtime.Object
    }{
    	{watch.Added, &apitesting.Simple{ObjectMeta: metav1.ObjectMeta{Name: "foo"}}},
    	{watch.Modified, &apitesting.Simple{ObjectMeta: metav1.ObjectMeta{Name: "bar"}}},
    	{watch.Deleted, &apitesting.Simple{ObjectMeta: metav1.ObjectMeta{Name: "bar"}}},
    }
    
    func podWatchTestTable() []struct {
    	t   watch.EventType
    	obj runtime.Object
    } {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 17:27:39 UTC 2023
    - 30K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/graph.go

    		g.graph.SetEdge(simple.Edge{F: pvVertex, T: g.getOrCreateVertex_locked(pvcVertexType, pv.Spec.ClaimRef.Namespace, pv.Spec.ClaimRef.Name)})
    		pvutil.VisitPVSecretNames(pv, func(namespace, secret string, kubeletVisible bool) bool {
    			// This grants access to the named secret in the same namespace as the bound PVC
    			if kubeletVisible {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

        }
    
        void withLavaLampPluginFor(ScriptTarget target, ParameterKind parameter, InjectionStyle injectionStyle) {
            switch (parameter) {
                case ParameterKind.SIMPLE: {
                    withSimpleLavaLampPluginFor target, injectionStyle
                    break
                }
                case ParameterKind.SERVICE_REFERENCE: {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/dump_test.go

    	}
    )
    
    func TestToDOTGraph(t *testing.T) {
    	tests := []struct {
    		name        string
    		uidToNode   map[types.UID]*node
    		expectNodes []*dotVertex
    		expectEdges []dotEdge
    	}{
    		{
    			name: "simple",
    			uidToNode: map[types.UID]*node{
    				types.UID("alpha"):   alphaNode(),
    				types.UID("bravo"):   bravoNode(),
    				types.UID("charlie"): charlieNode(),
    			},
    			expectNodes: []*dotVertex{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. tests/integration/security/egress_gateway_origination_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/file"
    	ingressutil "istio.io/istio/tests/integration/security/sds_ingress/util"
    )
    
    // TestSimpleTlsOrigination test SIMPLE TLS mode with TLS origination happening at Gateway proxy
    // It uses CredentialName set in DestinationRule API to fetch secrets from k8s API server
    func TestSimpleTlsOrigination(t *testing.T) {
    	// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

            then:
            succeeds 'checkDeps'
        }
    
        void "caches version listing using #lister lister"() {
            ListerInteractions listerInteractions
            switch (lister) {
                case 'simple':
                    listerInteractions = withLister(modules, true)
                    break;
                default:
                    listerInteractions = withExternalResourceLister(modules, true)
                    break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestEnvironmentIntegrationTest.groovy

                }
            """.stripIndent()
            buildFile << """
                dependencies {
                    implementation 'org.slf4j:slf4j-api:1.7.30'
                    testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.30'
                }
    
                test {
                    systemProperties 'java.system.class.loader':'org.gradle.MySystemClassLoader'
                }
            """.stripIndent()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #define CU_PASS(msg) \
      { CU_assertImplementation(CU_TRUE, __LINE__, ("CU_PASS(" #msg ")"), __FILE__, "", CU_FALSE); }
    
    /** Simple assertion.
     *  Reports failure with no other action.
     */
    #define CU_ASSERT(value) \
      { CU_assertImplementation((value), __LINE__, #value, __FILE__, "", CU_FALSE); }
    
    /** Simple assertion.
     *  Reports failure and causes test to abort.
     */
    #define CU_ASSERT_FATAL(value) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. pkg/config/validation/virtualservice_test.go

    	"istio.io/istio/pkg/config"
    )
    
    func TestValidateChainingVirtualService(t *testing.T) {
    	testCases := []struct {
    		name  string
    		in    proto.Message
    		valid bool
    	}{
    		{
    			name: "root simple",
    			in: &networking.VirtualService{
    				Hosts:    []string{"foo.bar"},
    				Gateways: []string{"test-gateway"},
    				Http: []*networking.HTTPRoute{{
    					Delegate: &networking.Delegate{
    						Name:      "test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top