Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 131 for Local (0.02 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Reader.kt

        handler: Handler,
        length: Int,
        flags: Int,
        streamId: Int,
      ) {
        if (streamId == 0) throw IOException("PROTOCOL_ERROR: TYPE_DATA streamId == 0")
    
        // TODO: checkState open or half-closed (local) or raise STREAM_CLOSED
        val inFinished = flags and FLAG_END_STREAM != 0
        val gzipped = flags and FLAG_COMPRESSED != 0
        if (gzipped) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_en.properties

    labels.plugin_name=Name
    labels.plugin_version=Version
    labels.plugin_delete=Delete
    labels.plugin_install=Install
    labels.plugin_install_title=Install Plugin
    labels.plugin_jar_file=Jar File
    labels.plugin_local_install=Local
    labels.plugin_remote_install=Remote
    labels.crud_button_install=Install
    labels.storage_configuration=Storage
    labels.storage_name=Name
    labels.storage_size=Size
    labels.storage_last_modified=Last Modified
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.6.md

      ```
      "stubDomains": {
        "acme.local": ["1.2.3.4"]
      },
      ```
      is a map of domain to list of nameservers for the domain. This is used
      to inject private DNS domains into the kube-dns namespace. In the above
      example, any DNS requests for *.acme.local will be served by the
      nameserver 1.2.3.4.
      ```
      "upstreamNameservers": ["8.8.8.8", "8.8.4.4"]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

                    String classpath = cmdList.get(cpIndex + 1);
                    assertTrue(classpath.contains(confPath));
                }
            }
        }
    
        // Test executeSuggestCreator with local Fesen
        public void test_executeSuggestCreator_withLocalFesen() {
            createRequiredDirectories();
            suggestJob.useLocalFesen(true);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  5. .github/workflows/build.yml

            uses: actions/setup-java@v5
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v4
    
          - name: Publish local snapshot
            run: ./gradlew publishToMavenLocal
    
          - name: Run maven test
            working-directory: ./maven-tests
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/HostnameVerifierTest.kt

        )
        val session = FakeSSLSession(certificate)
        assertThat(verifier.verify("localhost", session)).isTrue()
        assertThat(verifier.verify("localhost.localdomain", session)).isTrue()
        assertThat(verifier.verify("local.host", session)).isFalse()
        assertThat(verifier.verify("127.0.0.1", session)).isTrue()
        assertThat(verifier.verify("127.0.0.2", session)).isFalse()
      }
    
      @Test fun wildcardsCannotMatchIpAddresses() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 40.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.11.md

    * fix network setup in hack/local-up-cluster.sh (https://github.com/kubernetes/kubernetes/pull/60431) ([#60633](https://github.com/kubernetes/kubernetes/pull/60633), [@pohly](https://github.com/pohly))
        * better error diagnostics in hack/local-up-cluster.sh output
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  8. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

              .also { this.serverSocket = it }
    
          // Reuse if the user specified a port
          serverSocket.reuseAddress = socketAddress.port != 0
          serverSocket.bind(socketAddress, 50)
    
          // If the local port was 0, it'll be non-zero after bind().
          boundSocketAddress = InetSocketAddress(boundSocketAddress.address, serverSocket.localPort)
        } finally {
          this.socketAddress_ = boundSocketAddress
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 20:36:00 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.19.md

    ### CSI Volume health monitoring
     
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.20.md

    - Kube-controller-manager: volume plugins can be restricted from contacting local and loopback addresses by setting `--volume-host-allow-local-loopback=false`, or from contacting specific CIDR ranges by setting `--volume-host-cidr-denylist` (for example, `--volume-host-cidr-denylist=127.0.0.1/28,feed::/16`) ([#91785](https://github.com/kubernetes/kubernetes/pull/91785),...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
Back to top