Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 316 for service1 (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.18.md

    - Fixes service account token admission error in clusters that do not run the service account token controller ([#87029](https://github.com/kubernetes/kubernetes/pull/87029), [@liggitt](https://github.com/liggitt)) [SIG Auth]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.22.md

    - The conformance tests:
      - Services should serve multiport endpoints from pods
      - Services should serve a basic endpoint from pods
      were only validating the API objects, not performing any validation on the actual Services implementation.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

    import org.codelibs.core.io.FileUtil;
    import org.codelibs.core.misc.DynamicProperties;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.service.DataConfigService;
    import org.codelibs.fess.app.service.FileConfigService;
    import org.codelibs.fess.app.service.WebConfigService;
    import org.codelibs.fess.opensearch.config.cbean.DataConfigCB;
    import org.codelibs.fess.opensearch.config.cbean.FailureUrlCB;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         */
        public static DictionaryManager getDictionaryManager() {
            return getComponent(DICTIONARY_MANAGER);
        }
    
        /**
         * Gets the data service component.
         * @return The data service.
         */
        public static DataService<OpenSearchAccessResult> getDataService() {
            return getComponent(DATA_SERVICE);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

        LongHolder holder = new LongHolder();
        ArrayList<ListenableFuture<Integer>> lengthChecks = new ArrayList<>();
        List<Integer> completeLengthChecks;
        int baseStackDepth;
        ExecutorService service = newFixedThreadPool(5);
        try {
          // Avoid counting frames from the executor itself, or the ExecutionSequencer
          baseStackDepth =
              serializer
                  .submit(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  6. src/packaging/common/scripts/postinst

            echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using systemd"
            echo " sudo systemctl daemon-reload"
            echo " sudo systemctl enable fess.service"
            echo "### You can start fess service by executing"
            echo " sudo systemctl start fess.service"
    
        elif command -v chkconfig >/dev/null; then
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.24.md

    ### Avoiding Collisions in IP allocation to Services
    
    Kubernetes 1.24 introduced a new opt-in feature that allows you to
    [soft-reserve a range for static IP address assignments](https://kubernetes.io/docs/concepts/services-networking/service/#service-ip-static-sub-range)
    to Services.
    With the manual enablement of this feature, the cluster will prefer automatic assignment from
    the pool of Service IP addresses thereby reducing the risk of collision.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java

        assertEquals(0, service.runCalled);
        assertEquals(1, service.shutdownCalled);
      }
    
      public void testStop_noStart() {
        FakeService service = new FakeService();
        service.stopAsync().awaitTerminated();
        assertEquals(Service.State.TERMINATED, service.state());
        assertEquals(0, service.startupCalled);
        assertEquals(0, service.runCalled);
        assertEquals(0, service.shutdownCalled);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.33.md

    - The Service trafficDistribution field, including the PreferClose option, has graduated
      to GA. Services that do not have the field configured will continue to operate
      with their existing behavior. Refer to the documentation
      https://kubernetes.io/docs/concepts/services-networking/service/#traffic-distribution
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.34.md

    - Added support in the kubelet's image pull credential tracking for service account-based verification. When an image was pulled using service account credentials via external credential providers, subsequent Pods using the same service account (UID, name, and namespace) could access the cached image without re-authentication for the lifetime of that service account. ([#132771](https://github.com/kubernetes/kubernetes/pull/132771), [@aramase](https://github.com/aramase))...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
Back to top