Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for Blah (0.1 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/tableconvertor/tableconvertor_test.go

    						{ObjectMeta: metav1.ObjectMeta{Name: "blah-2", CreationTimestamp: metav1.NewTime(time.Unix(2, 0))}},
    					},
    				},
    				tableOptions: nil,
    			},
    			want: &metav1.Table{
    				ColumnDefinitions: []metav1.TableColumnDefinition{{Name: "name", Type: "string"}},
    				Rows: []metav1.TableRow{
    					{
    						Cells: []interface{}{"blah"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/FilesTest.java

        assertEquals("blah", Files.getNameWithoutExtension("blah.txt"));
        assertEquals("blah.", Files.getNameWithoutExtension("blah..txt"));
        assertEquals(".blah", Files.getNameWithoutExtension(".blah.txt"));
        assertEquals("blah", Files.getNameWithoutExtension("/tmp/blah.txt"));
        assertEquals("blah.tar", Files.getNameWithoutExtension("blah.tar.gz"));
        assertEquals("", Files.getNameWithoutExtension("/"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/FilesTest.java

        assertEquals("blah", Files.getNameWithoutExtension("blah.txt"));
        assertEquals("blah.", Files.getNameWithoutExtension("blah..txt"));
        assertEquals(".blah", Files.getNameWithoutExtension(".blah.txt"));
        assertEquals("blah", Files.getNameWithoutExtension("/tmp/blah.txt"));
        assertEquals("blah.tar", Files.getNameWithoutExtension("blah.tar.gz"));
        assertEquals("", Files.getNameWithoutExtension("/"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    			data:           []byte(`{"apiVersion":"blah"}`),
    			defaultGVK:     &schema.GroupVersionKind{Kind: "Test", Group: "other", Version: "blah"},
    			creater:        &mockCreater{obj: &testDecodable{}},
    			expectedObject: &testDecodable{TypeMeta: metav1.TypeMeta{APIVersion: "blah"}},
    			expectedGVK:    &schema.GroupVersionKind{Kind: "Test", Group: "", Version: "blah"},
    		},
    		// group without version is defaulted
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/process/internal/JvmOptionsTest.groovy

            expect:
            parse("-Dfile.encoding=UTF-8 -Dfoo.encoding=blah -Dfile.encoding=UTF-16").defaultCharacterEncoding == "UTF-16"
        }
    
        def "system properties are always before the symbolic arguments"() {
            expect:
            parse("-Xms1G -Dfile.encoding=UTF-8 -Dfoo.encoding=blah -Dfile.encoding=UTF-16").allJvmArgs == ["-Dfoo.encoding=blah", "-Xms1G", "-Dfile.encoding=UTF-16", *localePropertyStrings()]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/fields/selector_test.go

    		"foo":     "bar",
    		"baz":     "blah",
    		"complex": `=value\,\`,
    	}
    	expectMatch(t, "foo=bar", fieldset)
    	expectMatch(t, "baz=blah", fieldset)
    	expectMatch(t, "foo=bar,baz=blah", fieldset)
    	expectMatch(t, `foo=bar,baz=blah,complex=\=value\\\,\\`, fieldset)
    	expectNoMatch(t, "foo=blah", fieldset)
    	expectNoMatch(t, "baz=bar", fieldset)
    	expectNoMatch(t, "foo=bar,foobar=bar,baz=blah", fieldset)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 08:00:38 UTC 2017
    - 11.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

                source """class AccessedFromPrivateMethod {
                    private String foo = "blah";
                }"""
            }
    
            void applyModificationToClassAccessedFromPrivateMethodBody() {
                source """class AccessedFromPrivateMethodBody {
                    private String foo = "blah";
                }"""
            }
    
            void applyModificationToClassAccessedFromPackagePrivateField() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. pkg/credentialprovider/keyring_test.go

    		{
    			globURL:       "*.kubernetes.io/blah",
    			targetURL:     "prefix.kubernetes.io/blah",
    			matchExpected: true,
    		},
    		{
    			globURL:       "prefix.*.io/foo",
    			targetURL:     "prefix.kubernetes.io/foo/bar",
    			matchExpected: true,
    		},
    		// match with path components and ports
    		{
    			globURL:       "*.kubernetes.io:1111/blah",
    			targetURL:     "prefix.kubernetes.io:1111/blah",
    			matchExpected: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. src/cmd/link/elf_test.go

    }
    
    var cSources35779 = []string{`
    static int blah() { return 42; }
    int Cfunc1() { return blah(); }
    `, `
    static int blah() { return 42; }
    int Cfunc2() { return blah(); }
    `,
    }
    
    // TestMinusRSymsWithSameName tests a corner case in the new
    // loader. Prior to the fix this failed with the error 'loadelf:
    // $WORK/b001/_pkg_.a(ldr.syso): duplicate symbol reference: blah in
    // both main(.text) and main(.text)'. See issue #35779.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. 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)
Back to top