Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 319 for var0 (0.05 sec)

  1. schema/interfaces.go

    package schema
    
    import (
    	"gorm.io/gorm/clause"
    )
    
    // ConstraintInterface database constraint interface
    type ConstraintInterface interface {
    	GetName() string
    	Build() (sql string, vars []interface{})
    }
    
    // GormDataTypeInterface gorm data type interface
    type GormDataTypeInterface interface {
    	GormDataType() string
    }
    
    // FieldNewValuePool field new scan value pool
    type FieldNewValuePool interface {
    	Get() interface{}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 980 bytes
    - Viewed (0)
  2. test-site/activator.bat

    @REM CFG_OPTS  - JVM options (optional)
    @REM Configuration:
    @REM activatorconfig.txt found in the ACTIVATOR_HOME or ACTIVATOR_HOME/ACTIVATOR_VERSION
    @setlocal enabledelayedexpansion
    
    @echo off
    
    set "var1=%~1"
    if defined var1 (
      if "%var1%"=="help" (
        echo.
        echo Usage activator [options] [command]
        echo.
        echo Commands:
        echo ui                 Start the Activator UI
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  3. common/scripts/setup_env.sh

    if [[ "${1}" == "envfile" ]]; then
      # ! does a variable-variable https://stackoverflow.com/a/10757531/374797
      for var in "${VARS[@]}"; do
        echo "${var}"="${!var}"
      done
    else
      for var in "${VARS[@]}"; do
        # shellcheck disable=SC2163
        export "${var}"
      done
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/go/doc/doc.go

    		Consts:     sortedValues(r.values, token.CONST),
    		Types:      sortedTypes(r.types, mode&AllMethods != 0),
    		Vars:       sortedValues(r.values, token.VAR),
    		Funcs:      sortedFuncs(r.funcs, true),
    
    		importByName: r.importByName,
    		syms:         make(map[string]bool),
    	}
    
    	p.collectValues(p.Consts)
    	p.collectValues(p.Vars)
    	p.collectTypes(p.Types)
    	p.collectFuncs(p.Funcs)
    
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. chainable_api.go

    			tx.Statement.AddClause(clause.Select{
    				Distinct:   db.Statement.Distinct,
    				Expression: clause.Expr{SQL: v, Vars: args},
    			})
    		} else if strings.Count(v, "@") > 0 && len(args) > 0 {
    			tx.Statement.AddClause(clause.Select{
    				Distinct:   db.Statement.Distinct,
    				Expression: clause.NamedExpr{SQL: v, Vars: args},
    			})
    		} else {
    			tx.Statement.Selects = []string{v}
    
    			for _, arg := range args {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/conversion_test.go

    	if err != nil {
    		t.Fatalf("failed to read input yaml file: %v", err)
    	}
    	var varr []runtime.Object
    	for _, yml := range strings.Split(string(data), "\n---") {
    		obj, _, err := scheme.Codecs.UniversalDeserializer().Decode([]byte(yml), nil, nil)
    		if err != nil {
    			return nil, err
    		}
    		varr = append(varr, obj)
    	}
    
    	return varr, nil
    }
    
    func TestConversion(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. pkg/credentialprovider/plugin/plugin_test.go

    	if len(actual) != len(expected) {
    		return fmt.Errorf("actual env var length [%d] and expected env var length [%d] don't match",
    			len(actual), len(expected))
    	}
    
    	for i := range actual {
    		if actual[i] != expected[i] {
    			return fmt.Errorf("mismatch in expected env var %s and actual env var %s", actual[i], expected[i])
    		}
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_util_test.go

    	testCases := []struct {
    		name       string
    		data       map[string]string
    		shouldFail bool
    	}{
    		{name: "test with data ok", data: map[string]string{"key0": "val0", "_key1": "val1", "key2": "val2"}},
    		{name: "test with data ok 2 ", data: map[string]string{"_key0_": "val0", "&key1": "val1", "key2": "val2"}},
    	}
    
    	for i, tc := range testCases {
    		t.Logf("test case: %s", tc.name)
    		specVolID := fmt.Sprintf("spec-volid-%d", i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/dwarf.go

    // the offsets for any child DIEs (vars, params) so that they can be
    // consumed later in on DwarfFixupTable.Finalize, which applies any
    // outstanding fixups.
    func (ft *DwarfFixupTable) RegisterChildDIEOffsets(s *LSym, vars []*dwarf.Var, coffsets []int32) {
    	// Length of these two slices should agree
    	if len(vars) != len(coffsets) {
    		ft.ctxt.Diag("internal error: RegisterChildDIEOffsets vars/offsets length mismatch")
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  10. callbacks/delete.go

    				if db.AddError(err) == nil {
    					db.RowsAffected, _ = result.RowsAffected()
    				}
    
    				return
    			}
    
    			if rows, err := db.Statement.ConnPool.QueryContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...); db.AddError(err) == nil {
    				gorm.Scan(rows, db, mode)
    				db.AddError(rows.Close())
    			}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Feb 25 02:48:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top