Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 11 for bazaar (0.04 seconds)

  1. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

      }
    
      public void testRetainFrom() {
        assertThat(is('a').retainFrom("bazaar")).isEqualTo("aaa");
        assertThat(is('z').retainFrom("bazaar")).isEqualTo("z");
        assertThat(is('!').retainFrom("!@#$%^&*()-=")).isEqualTo("!");
        assertThat(is('x').retainFrom("bazaar")).isEqualTo("");
        assertThat(is('a').retainFrom("")).isEqualTo("");
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  2. guava/src/com/google/common/base/CharMatcher.java

        return count;
      }
    
      /**
       * Returns a string containing all non-matching characters of a character sequence, in order. For
       * example:
       *
       * {@snippet :
       * CharMatcher.is('a').removeFrom("bazaar")
       * }
       *
       * ... returns {@code "bzr"}.
       */
      public String removeFrom(CharSequence sequence) {
        String string = sequence.toString();
        int pos = indexIn(string);
        if (pos == -1) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

        return count;
      }
    
      /**
       * Returns a string containing all non-matching characters of a character sequence, in order. For
       * example:
       *
       * {@snippet :
       * CharMatcher.is('a').removeFrom("bazaar")
       * }
       *
       * ... returns {@code "bzr"}.
       */
      public String removeFrom(CharSequence sequence) {
        String string = sequence.toString();
        int pos = indexIn(string);
        if (pos == -1) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 53.9K bytes
    - Click Count (0)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SinceAndIncubatingRulesKotlinTest.kt

                    added("Constructor", "Bar()"),
                    added("Field", "INSTANCE"),
                    added("Method", "Bazar.getEntries()"),
                    added("Method", "Bazar.valueOf(java.lang.String)"),
                    added("Method", "Bazar.values()"),
                )
            }
    
            checkBinaryCompatibleKotlin(
                v2 = """
    
                /** @since 2.0 */
                @Incubating
                interface Foo
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jun 06 17:52:09 GMT 2025
    - 17.8K bytes
    - Click Count (0)
  5. src/main/resources/fess_message_pt_BR.properties

    errors.failed_to_download_kuromoji_file = Não foi possível baixar o arquivo Kuromoji.
    errors.failed_to_upload_kuromoji_file = Não foi possível carregar o arquivo Kuromoji.
    errors.failed_to_download_protwords_file = Não foi possível baixar o arquivo Protwords.
    errors.failed_to_upload_protwords_file = Não foi possível carregar o arquivo Protwords.
    errors.failed_to_download_stopwords_file = Não foi possível baixar o arquivo de stopwords.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  6. src/main/resources/fess_label_pt_BR.properties

    labels.dict_synonym_link_edit=Editar
    labels.dict_synonym_link_delete=Excluir
    labels.dict_synonym_link_details=Detalhes
    labels.dict_synonym_link_download=Baixar
    labels.dict_synonym_link_upload=Fazer upload
    labels.dict_synonym_source=Fonte
    labels.dict_synonym_target=Destino
    labels.dict_synonym_button_download=Baixar
    labels.dict_synonym_button_upload=Fazer upload
    labels.dict_synonym_file=Arquivo de sinônimos
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 53.9K bytes
    - Click Count (0)
  7. docs/pt-BR/README.md

    ## Problemas/Perguntas
    
    [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/)
    
    ## Como Começar
    
    Existem duas maneiras de testar o Fess. A primeira é baixar e instalar você mesmo. A segunda é usar [Docker](https://www.docker.com/products/docker-engine).
    
    ### Baixar e Instalar/Executar
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  8. guava-tests/test/com/google/common/io/MoreFilesTest.java

          Path fooPath = fs.getPath("foo");
          Path barPath = fs.getPath("bar");
          MoreFiles.asCharSink(fooPath, UTF_8).write("foo");
          MoreFiles.asCharSink(barPath, UTF_8).write("barbar");
    
          assertThat(MoreFiles.equal(fooPath, barPath)).isFalse();
          assertThat(MoreFiles.equal(fooPath, fooPath)).isTrue();
          assertThat(MoreFiles.asByteSource(fooPath).contentEquals(MoreFiles.asByteSource(fooPath)))
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  9. android/guava-tests/test/com/google/common/io/MoreFilesTest.java

          Path fooPath = fs.getPath("foo");
          Path barPath = fs.getPath("bar");
          MoreFiles.asCharSink(fooPath, UTF_8).write("foo");
          MoreFiles.asCharSink(barPath, UTF_8).write("barbar");
    
          assertThat(MoreFiles.equal(fooPath, barPath)).isFalse();
          assertThat(MoreFiles.equal(fooPath, fooPath)).isTrue();
          assertThat(MoreFiles.asByteSource(fooPath).contentEquals(MoreFiles.asByteSource(fooPath)))
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 26.6K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_id.properties

    labels.reload_doc_index=Muat Ulang Indeks Dokumen
    labels.reload_doc_index_button=Muat Ulang
    labels.rebuild_config_index=Bangun Ulang Indeks Konfigurasi
    labels.rebuild_config_index_button=Bangun Ulang
    labels.load_bulk_data=Muat Data Bawaan
    labels.rebuild_target_indices=Indeks Target
    labels.rebuild_config_index_confirmation=Apakah Anda yakin ingin membangun ulang indeks konfigurasi yang dipilih? Operasi ini akan berjalan di latar belakang.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 50.2K bytes
    - Click Count (0)
Back to Top