Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for example2v1 (0.3 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    			l["foo"] = "bar"
    		}
    		terminationGracePeriodSeconds := int64(42)
    		activeDeadlineSeconds := int64(42)
    		pod := &examplev1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				Labels: l,
    			},
    			Spec: examplev1.PodSpec{
    				RestartPolicy:                 examplev1.RestartPolicy("Always"),
    				TerminationGracePeriodSeconds: &terminationGracePeriodSeconds,
    				ActiveDeadlineSeconds:         &activeDeadlineSeconds,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTestSpecCrossVersionSpec.groovy

                    specs.forTaskPath(':secondTest').includePackage('example2')
                }
            }
    
            then:
            events.testClassesAndMethods.size() == 4
            assertTestExecuted(className: 'example2.MyOtherTest', methodName: 'bar', task: ':secondTest')
            assertTestExecuted(className: 'example2.MyOtherTest2', methodName: 'baz', task: ':secondTest')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/test/groovy/org/gradle/api/plugins/jvm/internal/JvmComponentDependenciesTest.groovy

            1 * dependencyFactory.create("com.example:example:2.0") >> example2
    
            dependencies.getImplementation().getDependencies().get() == [example, example2] as Set
        }
    
        def "GAV notation is supported"() {
            def example = Mock(ExternalModuleDependency)
            def example2 = Mock(ExternalModuleDependency)
            when:
            dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 16 19:56:35 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/testdata/localhost.yaml

      name: local
      namespace: default
      serviceAccount: default
      workloadIps: ["127.0.0.1"]
      protocol: HBONE
      node: local
      network: ""
      services:
        "default/example.com":
          80: 8080
        "default/example2.com":
          80: 8080
    # Define another local address, but this one uses TCP. This allows testing HBONE and TCP with one config.
    - uid: cluster1//v1/Pod/default/local-tcp
      name: local-tcp
      namespace: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

                assertTestNotExecuted(className: "example2.MyOtherTest")
            } else {
                assert events.tests.size() == 12
                assertTestExecuted(className: "example2.MyOtherTest")
            }
    
            assertTestNotExecuted(className: "example2.MyOtherTest", methodName: "bar", task: ":test")
            assertTestNotExecuted(className: "example2.MyOtherTest", methodName: "bar", task: ":secondTest")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/TestLauncherTestSpecCrossVersionSpec.groovy

                    specs.forTaskPath(':secondTest').includePackage('example2')
                }
            }
    
            then:
            // 2 test class + 2 test method events
            events.testClassesAndMethods.size() == 4
            assertTestExecuted(className: 'example2.MyOtherTest', methodName: 'bar', task: ':secondTest')
            assertTestExecuted(className: 'example2.MyOtherTest2', methodName: 'baz', task: ':secondTest')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	}
    
    	// Ensure there is some budget for slowing down processing.
    	cacher.dispatchTimeoutBudget.returnUnused(100 * time.Millisecond)
    
    	makePod := func(i int) *examplev1.Pod {
    		return &examplev1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:            fmt.Sprintf("pod-%d", 1000+i),
    				Namespace:       "ns",
    				ResourceVersion: fmt.Sprintf("%d", 1000+i),
    			},
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/doc.go

    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:conversion-gen=k8s.io/apiserver/pkg/apis/example2
    // +k8s:conversion-gen=k8s.io/apiserver/pkg/apis/example
    // +k8s:openapi-gen=false
    // +k8s:defaulter-gen=TypeMeta
    // +k8s:protobuf-gen=package
    
    // +groupName=example2.apiserver.k8s.io
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 23:00:55 UTC 2023
    - 904 bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    	}
    }
    
    func TestDeviceRunContainerOptions(t *testing.T) {
    	const (
    		podUID        = "pod"
    		containerName = "container"
    		resource1     = "example1.com/resource1"
    		resource2     = "example2.com/resource2"
    	)
    	testCases := []struct {
    		description          string
    		gate                 bool
    		responsesPerResource map[string]*pluginapi.ContainerAllocateResponse
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/reflect/internal/example1/example.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package example1
    
    type MyStruct struct {
    	MyStructs []MyStruct
    	MyStruct  *MyStruct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 246 bytes
    - Viewed (0)
Back to top