Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for colValue (0.49 sec)

  1. src/database/sql/fakedb_test.go

    				return nil, errf("unsupported conversion for pre-bound parameter %q to type %q", value, ctype)
    			}
    			stmt.colValue = append(stmt.colValue, subsetVal)
    		} else {
    			stmt.placeholders++
    			stmt.placeholderConverter = append(stmt.placeholderConverter, converterForType(ctype))
    			stmt.colValue = append(stmt.colValue, value)
    		}
    	}
    	return stmt, nil
    }
    
    // hook to simulate broken connections
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "replicas-test.example.com",
    			Namespace:       "default",
    			ResourceVersion: "1",
    		},
    		Data: map[string]string{
    			"coolkey": "coolvalue",
    		},
    	}
    	require.NoError(t, testContext.UpdateAndWait(&nativeTypeParamPolicy, denyBinding, configMapParam))
    
    	err := testContext.Plugin.Dispatch(
    		testContext,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top