Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for notUnique (0.1 sec)

  1. tests/migrate_test.go

    		}
    	}
    
    	tests := []TestCase{
    		{name: "notUnique to notUnique", from: &UniqueStruct1{}, to: &UniqueStruct2{}, checkFunc: checkNotUnique},
    		{name: "notUnique to unique", from: &UniqueStruct1{}, to: &UniqueStruct3{}, checkFunc: checkUnique},
    		{name: "notUnique to uniqueIndex", from: &UniqueStruct1{}, to: &UniqueStruct5{}, checkFunc: checkUniqueIndex},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation.go

    	var errs field.ErrorList
    
    	if s.XListType != nil {
    		switch *s.XListType {
    		case "set":
    			nonUnique, err := validateListSet(fldPath, obj)
    			if err != nil {
    				errs = append(errs, err)
    			} else {
    				for _, i := range nonUnique {
    					errs = append(errs, field.Duplicate(fldPath.Index(i), obj[i]))
    				}
    			}
    		case "map":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 02:47:24 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

            def repo1NonUnique = createModule(mavenHttpRepo, "org.gradle.integtests.resolve", "nonunique", "1.0-SNAPSHOT", false)
            def repo2NonUnique = publishModule(repo2, "org.gradle.integtests.resolve", "nonunique", "1.0-SNAPSHOT", false)
    
            when: "Server provides projectA from repo1"
            expectModuleServed(repo1ProjectA)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
Back to top