Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 7,966 for Language (0.59 sec)

  1. .teamcity/test-buckets.json

    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"language-native",
    					"tooling-native",
    					"core-api",
    					"plugins",
    					"wrapper",
    					"build-events",
    					"reporting",
    					"resources-s3",
    					"diagnostics",
    					"plugins-application",
    					"language-jvm"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    Json
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed May 01 00:36:47 GMT 2024
    - 50.1K bytes
    - Viewed (0)
  2. tests/scopes_test.go

    						return d.Or(DB.Where("b = 2").Or("c = 3"))
    					},
    				).Find(&Language{})
    			},
    			expected: `SELECT * FROM "languages" WHERE z = 0 AND a = 1 OR (b = 2 OR c = 3)`,
    		}, {
    			name: "depth_2",
    			queryFn: func(tx *gorm.DB) *gorm.DB {
    				return tx.Scopes(
    					func(d *gorm.DB) *gorm.DB { return d.Model(&Language{}) },
    					func(d *gorm.DB) *gorm.DB {
    						return d.
    							Or(DB.Scopes(
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Fri Jan 12 08:42:21 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/TearDownAccepter.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface TearDownAccepter {
      /**
       * Registers a TearDown implementor which will be run after the test proper.
       *
       * <p>In JUnit4 language, that means as an {@code @After}.
       *
       * <p>In JUnit3 language, that means during the {@link junit.framework.TestCase#tearDown()} step.
       */
      void addTearDown(TearDown tearDown);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri May 12 19:22:18 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/ExtensibleEnumRegistries.java

        @Named
        @Singleton
        public static class DefaultLanguageRegistry extends DefaultExtensibleEnumRegistry<Language, LanguageProvider>
                implements LanguageRegistry {
    
            @Inject
            public DefaultLanguageRegistry(List<LanguageProvider> providers) {
                super(providers, Language.NONE, Language.JAVA_FAMILY);
            }
        }
    
        public abstract static class DefaultExtensibleEnumRegistry<
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java

                    assertEquals(handler.getClassifier(), classifier, type + " classifier");
                    assertEquals(handler.getLanguage(), language, type + " language");
                    assertEquals(
                            handler.isAddedToClasspath() ? "true" : null, addedToClasspath, type + " addedToClasspath");
                    assertEquals(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultType.java

        private final String id;
        private final Language language;
        private final String extension;
        private final String classifier;
        private final boolean includesDependencies;
        private final Set<PathType> pathTypes;
        private final Map<String, String> properties;
    
        public DefaultType(
                String id,
                Language language,
                String extension,
                String classifier,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  7. docs/recipes.md

    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client = OkHttpClient()
    
          fun run() {
            val request = Request.Builder()
                .url("https://publicobject.com/helloworld.txt")
                .build()
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Fri Feb 18 08:52:22 GMT 2022
    - 40.2K bytes
    - Viewed (1)
  8. src/main/resources/fess_indices/fess.json

            "greek_lowercase": {
              "type":       "lowercase",
              "language":   "greek"
            },
            "greek_keywords": {
              "type":       "keyword_marker",
              "keywords_path": "${fess.dictionary.path}el/protwords.txt"
            },
            "greek_stemmer": {
              "type":       "stemmer",
              "language":   "greek"
            },
            "greek_override": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

            | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
            | * See the License for the specific language governing permissions and
            | * limitations under the License.
            | */
            |
            |package $packageName
            |
            |import org.intellij.lang.annotations.Language
            |
            |import java.lang.annotation.Retention
            |import java.lang.annotation.RetentionPolicy
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jun 22 10:58:31 GMT 2022
    - 6.9K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/TearDownAccepter.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface TearDownAccepter {
      /**
       * Registers a TearDown implementor which will be run after the test proper.
       *
       * <p>In JUnit4 language, that means as an {@code @After}.
       *
       * <p>In JUnit3 language, that means during the {@link junit.framework.TestCase#tearDown()} step.
       */
      void addTearDown(TearDown tearDown);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri May 12 19:22:18 GMT 2023
    - 1.3K bytes
    - Viewed (0)
Back to top