Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 127 for bla5 (0.14 sec)

  1. pkg/kubelet/config/apiserver_test.go

    		Spec:       v1.PodSpec{Containers: []v1.Container{{Image: "image/two"}}}}
    	pod2 := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "q"},
    		Spec:       v1.PodSpec{Containers: []v1.Container{{Image: "image/blah"}}}}
    
    	// Setup fake api client.
    	fakeWatch := watch.NewFake()
    	lw := fakePodLW{
    		listResp:  &v1.PodList{Items: []v1.Pod{*pod1v1}},
    		watchResp: fakeWatch,
    	}
    
    	ch := make(chan interface{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 18:31:03 UTC 2017
    - 5.6K bytes
    - Viewed (0)
  2. cni/pkg/repair/repair_test.go

    				Name: constants.ValidationContainerName,
    				State: corev1.ContainerState{
    					Waiting: &corev1.ContainerStateWaiting{
    						Reason:  "CrashLoopBackOff",
    						Message: "Back-off 5m0s restarting failed blah blah blah",
    					},
    				},
    				LastTerminationState: corev1.ContainerState{
    					Terminated: &corev1.ContainerStateTerminated{
    						Message:  terminationMessage,
    						ExitCode: int32(exitCode),
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/mime/mediatype_test.go

    		{`;foo="bar"; `, "foo", "bar", "; "},
    		{`;foo="bar"; foo=baz`, "foo", "bar", "; foo=baz"},
    		{` ; boundary=----CUT;`, "boundary", "----CUT", ";"},
    		{` ; key=value;  blah="value";name="foo" `, "key", "value", `;  blah="value";name="foo" `},
    		{`;  blah="value";name="foo" `, "blah", "value", `;name="foo" `},
    		{`;name="foo" `, "name", "foo", ` `},
    	}
    	for _, test := range tests {
    		param, value, rest := consumeMediaParam(test[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

            failureCauseContains """
      foo.bar { ... } @ build.gradle line 5, column 17
        subject:
          - foo.bar Object [*]
    
      foo.bla { ... } @ build.gradle line 8, column 17
        subject:
          - foo.bla Object [*]
    """
        }
    
        def "suggestions are provided for unbound by-path references"() {
            given:
            buildScript """
                class MyPlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                    variant('api') {
                        capability('org', 'foo', '1.0')
                        capability('org', 'blah', '1.0')
                    }
                    variant('runtime') {
                        capability('org', 'foo', '1.0')
                        capability('org', 'blah', '1.0')
                    }
                }
                'org:bar:1.0' {
                    variant('api') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/YesNoQuestionPromptEventTest.groovy

            expect:
            def result = event.convert(input)
            result.response == null
            result.newPrompt == "Please enter 'yes' or 'no': "
    
            where:
            input   | _
            ''      | _
            'bla'   | _
            'y'     | _
            'Y'     | _
            'ye'    | _
            'YES'   | _
            'n'     | _
            'N'     | _
            'NO'    | _
            'true'  | _
            'false' | _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pkg/kubelet/config/config_test.go

    	channel, ch, _ := createPodConfigTester(tCtx, PodConfigNotificationIncremental)
    
    	pod := CreateValidPod("foo2", "new")
    	pod.Annotations = make(map[string]string)
    	pod.Annotations["kubernetes.io/blah"] = "blah"
    
    	clone := pod.DeepCopy()
    
    	podUpdate := CreatePodUpdate(kubetypes.SET, TestSource, CreateValidPod("foo1", "new"), clone, CreateValidPod("foo3", "new"))
    	channel <- podUpdate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "cool.dk",
              "cool.co.uk",
              "cool.de",
              "cool.es",
              "cool\uFF61fr", // Alternate dot character
              "cool.nl",
              "members.blah.nl.",
              "cool.se",
              "utenti.blah.it",
              "kt.co",
              "a\u7f51\u7edcA.\u7f51\u7edc.Cn" // "a网络A.网络.Cn"
              );
    
      private static final ImmutableSet<String> SOMEWHERE_UNDER_RS =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/runtime/testdata/testexithooks/testexithooks.go

    	os.Exit(0)
    }
    
    func testBadExit() {
    	f1 := func() { println("blog") }
    	f2 := func() { println("blix") }
    	f3 := func() { println("blek") }
    	f4 := func() { println("blub") }
    	f5 := func() { println("blat") }
    	exithook.Add(exithook.Hook{F: f1})
    	exithook.Add(exithook.Hook{F: f2, RunOnFailure: true})
    	exithook.Add(exithook.Hook{F: f3})
    	exithook.Add(exithook.Hook{F: f4, RunOnFailure: true})
    	exithook.Add(exithook.Hook{F: f5})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            outputs.snapshot { run language.compileTaskName }
    
            when:
            source "class A { static final int x = 2; /* change */ void bla() { /* avoid flakiness */ } }"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses 'A', 'B'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top