Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 151 for composite (0.24 sec)

  1. guava-tests/test/com/google/common/collect/OrderingTest.java

              composites.add(new Composite<T>(t, 1));
            }
            for (T t : scenario.strictlyOrderedList) {
              composites.add(new Composite<T>(t, 2));
            }
            Ordering<Composite<T>> ordering =
                Ordering.<Composite<T>>natural()
                    .compound(scenario.ordering.onResultOf(Composite.<T>getValueFunction()));
            return new Scenario<Composite<T>>(
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/OrderingTest.java

              composites.add(new Composite<T>(t, 1));
            }
            for (T t : scenario.strictlyOrderedList) {
              composites.add(new Composite<T>(t, 2));
            }
            Ordering<Composite<T>> ordering =
                Ordering.<Composite<T>>natural()
                    .compound(scenario.ordering.onResultOf(Composite.<T>getValueFunction()));
            return new Scenario<Composite<T>>(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  3. schema/index.go

    				if name == "" {
    					subName := field.Name
    					const key = "COMPOSITE"
    					if composite, found := settings[key]; found {
    						if len(composite) == 0 || composite == key {
    							err = fmt.Errorf(
    								"The composite tag of %s.%s cannot be empty",
    								field.Schema.Name,
    								field.Name)
    							return
    						}
    						subName = composite
    					}
    					name = field.Schema.namer.IndexName(
    Go
    - Registered: Sun Apr 21 09:35:09 GMT 2024
    - Last Modified: Sun Feb 04 07:49:19 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  4. schema/index_test.go

    	// Composite Index: Flattened structure.
    	Data0A string `gorm:"index:,composite:comp_id0"`
    	Data0B string `gorm:"index:,composite:comp_id0"`
    
    	// Composite Index: Nested structure.
    	Data1A string `gorm:"index:,composite:comp_id1"`
    	CompIdxLevel1C
    
    	// Composite Index: Unique and priority.
    	Data2A string `gorm:"index:,unique,composite:comp_id2,priority:2"`
    	CompIdxLevel2C
    }
    
    Go
    - Registered: Sun Apr 21 09:35:09 GMT 2024
    - Last Modified: Sun Feb 04 07:49:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  5. .teamcity/test-buckets.json

    					"resources-sftp",
    					"testing-base",
    					"build-cache-http"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"composite-builds",
    					"tooling-native",
    					"build-events",
    					"core-api",
    					"plugins-jvm-test-fixtures",
    					"plugins-jvm-test-suite",
    					"wrapper",
    					"plugins",
    					"model-groovy",
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 01 00:30:22 GMT 2024
    - 49.5K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/PartialTrigger.kt

        id("${model.projectId}_${triggerId}_Trigger")
        uuid = "${DslContext.uuidPrefix}_${model.projectId}_${triggerId}_Trigger"
        name = "$triggerName (Trigger)"
        type = Type.COMPOSITE
    
        applyDefaultSettings()
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        dependencies {
            snapshotDependencies(dependencies)
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/FunctionalTestsPass.kt

        id("${functionalTestProject.testCoverage.asId(model)}_Trigger")
        name = functionalTestProject.name + " (Trigger)"
        type = Type.COMPOSITE
    
        applyDefaultSettings()
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        dependencies {
            snapshotDependencies(functionalTestProject.functionalTests)
        }
    }) {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu May 06 17:20:10 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt

        id("${model.projectId}_GitHubMergeQueueCheckPass")
        uuid = "${DslContext.uuidPrefix}_${model.projectId}_GitHubMergeQueueCheckPass"
        name = "GitHub Merge Queue Check Pass"
        type = Type.COMPOSITE
    
        vcs {
            root(AbsoluteId(VersionedSettingsBranch.fromDslContext().vcsRootId()))
            checkoutMode = CheckoutMode.ON_AGENT
        }
    
        features {
            enablePullRequestFeature()
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 23 05:43:32 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java

    import org.codehaus.plexus.component.configurator.ComponentConfigurationException;
    import org.codehaus.plexus.component.configurator.ConfigurationListener;
    import org.codehaus.plexus.component.configurator.converters.composite.ObjectWithFieldsConverter;
    import org.codehaus.plexus.component.configurator.converters.lookup.ConverterLookup;
    import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluationException;
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/DocsTest.kt

    class DocsTestTrigger(model: CIBuildModel, docsTestProject: DocsTestProject) : BaseGradleBuildType(init = {
        id("${asDocsTestId(model, docsTestProject.os)}_Trigger")
        name = docsTestProject.name + " (Trigger)"
        type = Type.COMPOSITE
    
        applyDefaultSettings()
    
        features {
            publishBuildStatusToGithub(model)
        }
        dependencies {
            snapshotDependencies(docsTestProject.docsTests)
        }
    })
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 4.7K bytes
    - Viewed (0)
Back to top