Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for table$one (0.2 sec)

  1. internal/event/target/postgresql_test.go

    		}
    	}
    	if !found {
    		t.Fatal("postgres driver not registered")
    	}
    }
    
    func TestPsqlTableNameValidation(t *testing.T) {
    	validTables := []string{"táblë", "table", "TableName", "\"Table name\"", "\"✅✅\"", "table$one", "\"táblë\""}
    	invalidTables := []string{"table name", "table \"name\"", "✅✅", "$table$"}
    
    	for _, name := range validTables {
    		if err := validatePsqlTableName(name); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 24 17:51:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/watch/mux_test.go

    		go func(watcher int, w Interface) {
    			tableLine := 0
    			for {
    				event, ok := <-w.ResultChan()
    				if !ok {
    					break
    				}
    				if e, a := table[tableLine], event; !reflect.DeepEqual(e, a) {
    					t.Errorf("Watcher %v, line %v: Expected (%v, %#v), got (%v, %#v)",
    						watcher, tableLine, e.Type, e.Object, a.Type, a.Object)
    				} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 15:26:25 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            assertArrayEquals(totalTagletsValue, options.getTaglets().toArray());
        }
    
        @Test
        public void testFluentTagletPath() {
            final File[] tagletPathValue = new File[]{new File("tagletOne.jar"), new File("tagletTwo.jar")};
            assertEquals(options, options.tagletPath(tagletPathValue));
            assertArrayEquals(tagletPathValue, options.getTagletPath().toArray());
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top