Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 296 for vers (0.04 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/flowcontrol.apiserver.k8s.io.v1beta2.FlowSchema.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/flowcontrol.apiserver.k8s.io.v1.FlowSchema.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/flowcontrol.apiserver.k8s.io.v1.FlowSchema.yaml

      rules:
      - nonResourceRules:
        - nonResourceURLs:
          - nonResourceURLsValue
          verbs:
          - verbsValue
        resourceRules:
        - apiGroups:
          - apiGroupsValue
          clusterScope: true
          namespaces:
          - namespacesValue
          resources:
          - resourcesValue
          verbs:
          - verbsValue
        subjects:
        - group:
            name: nameValue
          kind: kindValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/flowcontrol.apiserver.k8s.io.v1beta1.FlowSchema.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/internal/jvm/ClassDirectoryBinaryNamingSchemeTest.groovy

        def "generates task names for class directory binaries"() {
            expect:
            def namer = new ClassDirectoryBinaryNamingScheme(name)
            namer.getTaskName(verb, target) == taskName
    
            where:
            name   | verb      | target      | taskName
            "main" | null      | null        | "main"
            "main" | "compile" | null        | "compileMain"
            "main" | null      | "resources" | "resources"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. schema/constraint.go

    type CheckConstraint struct {
    	Name       string
    	Constraint string // length(phone) >= 10
    	*Field
    }
    
    func (chk *CheckConstraint) GetName() string { return chk.Name }
    
    func (chk *CheckConstraint) Build() (sql string, vars []interface{}) {
    	return "CONSTRAINT ? CHECK (?)", []interface{}{clause.Column{Name: chk.Name}, clause.Expr{SQL: chk.Constraint}}
    }
    
    // ParseCheckConstraints parse schema check constraints
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 07:33:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. callbacks.go

    			sql, vars := stmt.SQL.String(), stmt.Vars
    			if filter, ok := db.Logger.(ParamsFilter); ok {
    				sql, vars = filter.ParamsFilter(stmt.Context, stmt.SQL.String(), stmt.Vars...)
    			}
    			return db.Dialector.Explain(sql, vars...), db.RowsAffected
    		}, db.Error)
    	}
    
    	if !stmt.DB.DryRun {
    		stmt.SQL.Reset()
    		stmt.Vars = nil
    	}
    
    	if resetBuildClauses {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. .github/workflows/update-rbe.yml

            map sigbuild-r2.12-python3.9 2.12-python3.9
            map sigbuild-r2.12-python3.10 2.12-python3.10
            map sigbuild-r2.12-python3.11 2.12-python3.11
            # TF 2.12 + Clang (containers are the same, but env vars in configs.bzl are different)
            map sigbuild-r2.12-clang 2.12-python3.9
            map sigbuild-r2.12-clang-python3.8 2.12-python3.8
            map sigbuild-r2.12-clang-python3.9 2.12-python3.9
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 15:40:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. clause/limit_test.go

    	"gorm.io/gorm/clause"
    )
    
    func TestLimit(t *testing.T) {
    	limit0 := 0
    	limit10 := 10
    	limit50 := 50
    	limitNeg10 := -10
    	results := []struct {
    		Clauses []clause.Interface
    		Result  string
    		Vars    []interface{}
    	}{
    		{
    			[]clause.Interface{clause.Select{}, clause.From{}, clause.Limit{
    				Limit:  &limit10,
    				Offset: 20,
    			}},
    			"SELECT * FROM `users` LIMIT ? OFFSET ?",
    			[]interface{}{limit10, 20},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Feb 06 02:54:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/BinaryTasksCollection.java

        /**
         * Generates a name for a task that performs some action on the binary.
         */
        String taskName(String verb);
    
        /**
         * Generates a name for a task that performs some action on the binary.
         */
        String taskName(String verb, String object);
    
        /**
         * The task that can be used to assemble this binary.
         */
        Task getBuild();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top