Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for Languages (0.28 sec)

  1. tests/migrate_test.go

    	}
    }
    
    func TestMigrateConstraint(t *testing.T) {
    	names := []string{"Account", "fk_users_account", "Pets", "fk_users_pets", "Company", "fk_users_company", "Team", "fk_users_team", "Languages", "fk_users_languages"}
    
    	for _, name := range names {
    		if !DB.Migrator().HasConstraint(&User{}, name) {
    			DB.Migrator().CreateConstraint(&User{}, name)
    		}
    
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Mar 18 11:24:16 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                final String language = locale.getLanguage();
                final String country = locale.getCountry();
                if (StringUtil.isNotBlank(language)) {
                    if (StringUtil.isNotBlank(country)) {
                        return language.toLowerCase(Locale.ROOT) + "-" + country.toLowerCase(Locale.ROOT);
                    }
                    return language.toLowerCase(Locale.ROOT);
                }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  3. tests/query_test.go

    	}
    }
    
    func TestQueryWithAssociation(t *testing.T) {
    	user := *GetUser("query_with_association", Config{Account: true, Pets: 2, Toys: 1, Company: true, Manager: true, Team: 2, Languages: 1, Friends: 3})
    
    	if err := DB.Create(&user).Error; err != nil {
    		t.Fatalf("errors happened when create user: %v", err)
    	}
    
    	user.CreatedAt = time.Time{}
    	user.UpdatedAt = time.Time{}
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 49.8K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    # REGISTER_OP and REGISTER_KERNEL_BUILDER (which use symbols from
    # libtensorflow_framework.so), and pywrap_tensorflow can then use these
    # ops. Since other languages use the same libtensorflow_framework.so, op
    # libraries are language agnostic.
    #
    # This shared object is not used unless framework_shared_object=true (set in the
    # configure script unconditionally); otherwise if it is false or undefined, the
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  5. .teamcity/test-buckets.json

    					"ide-native",
    					"reporting"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"language-native",
    					"resources-s3",
    					"platform-base",
    					"diagnostics",
    					"language-jvm",
    					"plugins-java-library",
    					"signing",
    					"plugins-application",
    					"antlr",
    					"test-kit",
    					"ide"
    				]
    			},
    			{
    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. src/main/resources/suggest_indices/suggest_analyzer.json

            "type":       "stemmer",
            "language":   "arabic"
          },
          "bulgarian_stop": {
            "type":       "stop",
            "stopwords":  "_bulgarian_"
          },
          "bulgarian_keywords": {
            "type":       "keyword_marker",
            "keywords":   ["Добър ден"]
          },
          "bulgarian_stemmer": {
            "type":       "stemmer",
            "language":   "bulgarian"
          },
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu May 23 05:09:51 GMT 2019
    - 57.7K bytes
    - Viewed (0)
  7. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

            "type":       "stemmer",
            "language":   "arabic"
          },
          "bulgarian_stop": {
            "type":       "stop",
            "stopwords":  "_bulgarian_"
          },
          "bulgarian_keywords": {
            "type":       "keyword_marker",
            "keywords":   ["Добър ден"]
          },
          "bulgarian_stemmer": {
            "type":       "stemmer",
            "language":   "bulgarian"
          },
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  8. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

            "type":       "stemmer",
            "language":   "arabic"
          },
          "bulgarian_stop": {
            "type":       "stop",
            "stopwords":  "_bulgarian_"
          },
          "bulgarian_keywords": {
            "type":       "keyword_marker",
            "keywords":   ["Добър ден"]
          },
          "bulgarian_stemmer": {
            "type":       "stemmer",
            "language":   "bulgarian"
          },
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    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.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_C_API_H_
    #define TENSORFLOW_C_C_API_H_
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  10. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

     * software distributed under the License is distributed on an
     * "AS IS" BASIS, 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 org.apache.maven.project;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
Back to top