Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 67 for langs3 (0.04 seconds)

  1. tests/upsert_test.go

    	var langs3 []Language
    	if err := DB.Find(&langs3, "code LIKE ?", "upsert-slice%").Error; err != nil {
    		t.Errorf("no error should happen when find languages with code, but got %v", err)
    	} else if len(langs3) != 3 {
    		t.Errorf("should only find only 3 languages, but got %+v", langs3)
    	}
    
    	for idx, lang := range langs {
    		lang.Name = lang.Name + "_new"
    		langs[idx] = lang
    	}
    
    	if err := DB.Clauses(clause.OnConflict{
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Tue Jul 29 11:06:13 GMT 2025
    - 13.1K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_aws/fess/doc.json

                "analyzer": "russian_analyzer"
              }
            }
          },
          {
            "lang_si": {
              "match": "*_si",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_sq": {
              "match": "*_sq",
              "mapping": {
                "type": "text",
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Click Count (0)
  3. src/main/resources/fess_indices/fess/doc.json

                "analyzer": "russian_analyzer"
              }
            }
          },
          {
            "lang_si": {
              "match": "*_si",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_sq": {
              "match": "*_sq",
              "mapping": {
                "type": "text",
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.8K bytes
    - Click Count (0)
  4. src/main/resources/fess_indices/_cloud/fess/doc.json

                "analyzer": "russian_analyzer"
              }
            }
          },
          {
            "lang_si": {
              "match": "*_si",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_sq": {
              "match": "*_sq",
              "mapping": {
                "type": "text",
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Click Count (0)
  5. tests/generics_test.go

    	}).Create(ctx, &lang3); err != nil {
    		t.Fatalf("failed to upsert, got %v", err)
    	}
    
    	if langs, err := gorm.G[Language](DB).Where("code = ?", lang.Code).Find(ctx); err != nil {
    		t.Errorf("no error should happen when find languages with code, but got %v", err)
    	} else if len(langs) != 1 {
    		t.Errorf("should only find only 1 languages, but got %+v", langs)
    	} else if langs[0].Name != "upsert-new" {
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Sun Nov 02 14:09:18 GMT 2025
    - 33.7K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/primitives/Longs.java

     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible
    public final class Longs {
      private Longs() {}
    
      /**
       * The number of bytes required to represent a primitive {@code long} value.
       *
       * <p>Prefer {@link Long#BYTES} instead.
       */
      public static final int BYTES = Long.BYTES;
    
      /**
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Oct 22 18:14:49 GMT 2025
    - 29K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java

                        if (japaneseMode && "ja".equals(lang)) {
                            // Simulate Japanese conversion
                            if ("東京".equals(text)) {
                                readings.add("トウキョウ");
                            } else {
                                readings.add(text.toUpperCase() + "_" + lang);
                            }
                        } else if (langs.length > 1) {
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Sep 01 13:33:03 GMT 2025
    - 13.5K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/security/simple-oauth2.md

    Ferner sagt die Spezifikation, dass der Client ein weiteres Formularfeld "`scope`" („Geltungsbereich“) senden kann.
    
    Der Name des Formularfelds lautet `scope` (im Singular), tatsächlich handelt es sich jedoch um einen langen String mit durch Leerzeichen getrennten „Scopes“.
    
    Jeder „Scope“ ist nur ein String (ohne Leerzeichen).
    
    Diese werden normalerweise verwendet, um bestimmte Sicherheitsberechtigungen zu deklarieren, zum Beispiel:
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Sep 20 15:10:09 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

         * @param searchWord Search word
         * @param field Field
         * @param langs Languages
         * @param analyzer Analyzer
         * @return True if the search word is excluded
         */
        protected boolean isExcludeSearchword(final String searchWord, final String field, final String[] langs,
                final SuggestAnalyzer analyzer) {
            if (langs == null || langs.length == 0) {
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 14.9K bytes
    - Click Count (0)
  10. tests/associations_test.go

    	}
    	AssertAssociationCount(t, user, "Languages", 1, "after replace with 1 map")
    
    	var langs []Language
    	if err := DB.Model(&user).Association("Languages").Find(&langs); err != nil {
    		t.Fatalf("find languages after replace: %v", err)
    	}
    	if len(langs) != 1 || langs[0].Code != "rm2m_map_1" {
    		t.Fatalf("expected only rm2m_map_1 after replace, got %+v", langs)
    	}
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Fri Sep 12 04:33:27 GMT 2025
    - 13.3K bytes
    - Click Count (0)
Back to Top