Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for kunnen (0.05 sec)

  1. src/main/resources/fess_message_nl.properties

    errors.not_found_on_file_system = Niet gevonden. Oorzaak: {0}
    errors.could_not_open_on_system = Kan {0} niet openen.<br>Controleer of het bestand is gekoppeld aan een toepassing.
    errors.result_size_exceeded = Er kunnen geen verdere resultaten worden weergegeven.
    errors.target_file_does_not_exist = Bestand {0} bestaat niet.
    errors.failed_to_delete_file = Kan bestand {0} niet verwijderen.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/_aws/fess.json

    "mir", "ihr", "ihre", "ihrem", "ihren", "ihrer", "ihres", "euch", "im", "in", "indem", "ins", "ist", "jede", "jedem", "jeden", "jeder", "jedes", "jene", "jenem", "jenen", "jener", "jenes", "jetzt", "kann", "kein", "keine", "keinem", "keinen", "keiner", "keines", "können", "könnte", "machen", "man", "manche", "manchem", "manchen", "mancher", "manches", "mein", "meine", "meinem", "meinen", "meiner", "meines", "mit", "muss", "musste", "nach", "nicht", "nichts", "noch", "nun", "nur", "ob", "oder", "ohne",...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 117.3K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_de.properties

    errors.failed_to_read_request_file=Fehler beim Lesen einer Anforderungsdatei: {0}
    errors.invalid_header_for_request_file=Ungültige Header-Zeile: {0}
    errors.could_not_delete_logged_in_user=Sie können keinen angemeldeten Benutzer löschen.
    errors.unauthorized_request=Unautorisierte Anfrage.
    errors.failed_to_print_thread_dump=Fehler beim Drucken eines Thread-Dumps.
    errors.file_is_not_supported={0} wird nicht unterstützt.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/Funnels.java

          implements Funnel<Iterable<? extends E>> {
        private final Funnel<E> elementFunnel;
    
        SequentialFunnel(Funnel<E> elementFunnel) {
          this.elementFunnel = Preconditions.checkNotNull(elementFunnel);
        }
    
        @Override
        public void funnel(Iterable<? extends E> from, PrimitiveSink into) {
          for (E e : from) {
            elementFunnel.funnel(e, into);
          }
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/Funnels.java

          implements Funnel<Iterable<? extends E>> {
        private final Funnel<E> elementFunnel;
    
        SequentialFunnel(Funnel<E> elementFunnel) {
          this.elementFunnel = Preconditions.checkNotNull(elementFunnel);
        }
    
        @Override
        public void funnel(Iterable<? extends E> from, PrimitiveSink into) {
          for (E e : from) {
            elementFunnel.funnel(e, into);
          }
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/BloomFilter.java

          Funnel<? super T> funnel, long expectedInsertions, double fpp) {
        return create(funnel, expectedInsertions, fpp, BloomFilterStrategies.MURMUR128_MITZ_64);
      }
    
      @VisibleForTesting
      static <T extends @Nullable Object> BloomFilter<T> create(
          Funnel<? super T> funnel, long expectedInsertions, double fpp, Strategy strategy) {
        checkNotNull(funnel);
        checkArgument(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  7. android-test/build.gradle.kts

      androidTestImplementation(libs.squareup.okio.fakefilesystem)
    
      androidTestImplementation(libs.androidx.test.runner)
      androidTestImplementation(libs.junit.jupiter.api)
      androidTestImplementation(libs.junit5android.core)
      androidTestRuntimeOnly(libs.junit5android.runner)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 20:01:04 UTC 2025
    - 3.8K bytes
    - Viewed (2)
  8. android-test-app/build.gradle.kts

    }
    
    android {
      compileSdk = 36
    
      namespace = "okhttp.android.testapp"
    
      testBuildType = "release"
    
      defaultConfig {
        minSdk = 21
        targetSdk = 36
        testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
      }
    
      compileOptions {
        targetCompatibility(JavaVersion.VERSION_11)
        sourceCompatibility(JavaVersion.VERSION_11)
      }
    
      kotlinOptions {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 19 12:35:48 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt

        // Tell the call about the connecting call so async cancels work.
        user.addPlanToCancel(this)
        try {
          if (tunnelRequest != null) {
            val tunnelResult = connectTunnel()
    
            // Tunnel didn't work. Start it all again.
            if (tunnelResult.nextPlan != null || tunnelResult.throwable != null) {
              return tunnelResult
            }
          }
    
          if (route.address.sslSocketFactory != null) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  10. .github/workflows/build.yml

            uses: reactivecircus/android-emulator-runner@v2
            with:
              api-level: ${{ matrix.api-level }}
              arch: ${{ matrix.api-level == '34' && 'x86_64' || 'x86' }}
              script: ./gradlew :android-test:connectedCheck
            env:
              API_LEVEL: ${{ matrix.api-level }}
    
          - name: Run Release Tests
            uses: reactivecircus/android-emulator-runner@v2
            with:
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 18.1K bytes
    - Viewed (0)
Back to top