Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for foo121 (0.48 sec)

  1. pkg/apis/storage/validation/validation_test.go

    		ObjectMeta: metav1.ObjectMeta{Name: "foo11"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "driver1",
    				NodeID:       "node1",
    				TopologyKeys: []string{"key1", "key1"},
    			}},
    		},
    	}, {
    		// multiple drivers with one set of duplicate topology keys in driver specs
    		ObjectMeta: metav1.ObjectMeta{Name: "foo12"},
    		Spec: storage.CSINodeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:   "foo11",
    					Labels: map[string]string{"kubernetes.io/role": "node"},
    				},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo11", "Unknown", "node", "<unknown>", ""}}},
    		},
    	}
    
    	for i, test := range table {
    		rows, err := printNode(&test.node, printers.GenerateOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway_test.go

    	"testing"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // nolint lll
    func TestMergeGateways(t *testing.T) {
    	gwHTTPFoo := makeConfig("foo1", "not-default", "foo.bar.com", "name1", "http", 7, "ingressgateway", "", networking.ServerTLSSettings_SIMPLE)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/TestLauncherCrossVersionSpec.groovy

            launchTests { TestLauncher launcher ->
                launcher.withTaskAndTestMethods(':secondTest', "example.MyTest", ["foo2"])
            }
            then:
            assertTaskNotExecuted(":test")
            assertTaskExecuted(":secondTest")
            assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":secondTest")
            assertTestNotExecuted(className: "example.MyTest", methodName: "foo")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/net/http/request_test.go

    		}
    	}
    }
    
    func TestMultipartReader(t *testing.T) {
    	tests := []struct {
    		shouldError bool
    		contentType string
    	}{
    		{false, `multipart/form-data; boundary="foo123"`},
    		{false, `multipart/mixed; boundary="foo123"`},
    		{true, `text/plain`},
    	}
    
    	for i, test := range tests {
    		req := &Request{
    			Method: "POST",
    			Header: Header{"Content-Type": {test.contentType}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  6. src/internal/trace/testtrace/validation.go

    	gs       map[trace.GoID]*goState
    	ps       map[trace.ProcID]*procState
    	ms       map[trace.ThreadID]*schedContext
    	ranges   map[trace.ResourceID][]string
    	tasks    map[trace.TaskID]string
    	seenSync bool
    	Go121    bool
    }
    
    type schedContext struct {
    	M trace.ThreadID
    	P trace.ProcID
    	G trace.GoID
    }
    
    type goState struct {
    	state   trace.GoState
    	binding *schedContext
    }
    
    type procState struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar.go

    	"net/url"
    	"slices"
    	"strings"
    	"sync"
    	"time"
    )
    
    // PublicSuffixList provides the public suffix of a domain. For example:
    //   - the public suffix of "example.com" is "com",
    //   - the public suffix of "foo1.foo2.foo3.co.uk" is "co.uk", and
    //   - the public suffix of "bar.pvt.k12.ma.us" is "pvt.k12.ma.us".
    //
    // Implementations of PublicSuffixList must be safe for concurrent use by
    // multiple goroutines.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            val instance = createFromPaths(listOf("foo*/*bar*/*baz/*.xml"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/bar/baz/.xml")))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo1/2bar3/4baz/abc.xml")))
        }
    
        @Test
        fun `recognizes double-asterisk wildcards across path segments`() {
            val instance = createFromPaths(listOf("foo/**/bar/**"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// major version, then minor version. An example sorted list of versions:
    	// v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
    	// +listType=atomic
    	Versions []CustomResourceDefinitionVersion `json:"versions" protobuf:"bytes,7,rep,name=versions"`
    
    	// conversion defines conversion settings for the CRD.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            def parent = Mock(ParentServices)
            def registry = decoratorCreator.call(registry(parent))
    
            when:
            def result = registry.get(String)
    
            then:
            result == "Foo120"
    
            and:
            1 * parent.get(Long) >> 110L
            1 * parent.get(String) >> "Foo"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
Back to top