Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 783 for service1 (0.05 sec)

  1. src/test/java/jcifs/smb1/smb1/SmbTreeTest.java

            assertEquals("?????", tree.service);
            assertEquals(0, tree.connectionState);
    
            // Test constructor with service starting with "??"
            tree = new SmbTree(session, "testShare", "??service");
            assertEquals("TESTSHARE", tree.share);
            assertEquals("?????", tree.service);
            assertEquals(0, tree.connectionState);
        }
    
        @Test
        void testMatches() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/ListenerCallQueueTest.java

        } finally {
          service.shutdown();
        }
      }
    
      public void testEnqueueAndDispatch_multithreaded_withThrowingRunnable()
          throws InterruptedException {
        Object listener = new Object();
        ExecutorService service = newFixedThreadPool(4);
        ListenerCallQueue<Object> queue = new ListenerCallQueue<>();
        try {
          queue.addListener(listener, service);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/ListenerCallQueueTest.java

        } finally {
          service.shutdown();
        }
      }
    
      public void testEnqueueAndDispatch_multithreaded_withThrowingRunnable()
          throws InterruptedException {
        Object listener = new Object();
        ExecutorService service = newFixedThreadPool(4);
        ListenerCallQueue<Object> queue = new ListenerCallQueue<>();
        try {
          queue.addListener(listener, service);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

    - **Network**
      - [stable] Services can reference another service by DNS name, rather than being hosted in pods ([kubernetes/features#33](https://github.com/kubernetes/enhancements/issues/33))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java

         * @param path the UNC path to the shared resource
         * @param service the service type (e.g., "A:" for disk share, "LPT1:" for printer)
         * @param andx the next command in the AndX chain, or null
         */
        public SmbComTreeConnectAndX(final CIFSContext ctx, final ServerData server, final String path, final String service,
                final ServerMessageBlock andx) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/service/FessUrlQueueService.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.service;
    
    import java.util.List;
    import java.util.Map;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.crawler.entity.OpenSearchUrlQueue;
    import org.codelibs.fess.crawler.service.impl.OpenSearchUrlQueueService;
    import org.codelibs.fess.crawler.util.OpenSearchCrawlerConfig;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java

                batchLimits[8] = Byte.parseByte(s);
            }
        }
    
        SmbComTreeConnectAndX(final SmbSession session, final String path, final String service, final ServerMessageBlock andx) {
            super(andx);
            this.session = session;
            this.path = path;
            this.service = service;
            command = SMB_COM_TREE_CONNECT_ANDX;
        }
    
        @Override
        int getBatchLimit(final byte command) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

        }
    
        public void test_setEcsServiceName() {
            activityHelper.setEcsServiceName("test-service");
            activityHelper.useEcsFormat = true;
            activityHelper.login(OptionalThing.empty());
            assertTrue(localLogMsg.get().contains("\"service.name\":\"test-service\""));
        }
    
        public void test_setEcsEventDataset() {
            activityHelper.setEcsEventDataset("test-dataset");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  9. cmd/server-main.go

    		logger.FatalIf(initGlobalGrid(GlobalContext, globalEndpoints), "Unable to configure server grid RPC services")
    	})
    
    	// Initialize lock grid
    	bootstrapTrace("initLockGrid", func() {
    		logger.FatalIf(initGlobalLockGrid(GlobalContext, globalEndpoints), "Unable to configure server lock grid RPC services")
    	})
    
    	// Configure server.
    	bootstrapTrace("configureServer", func() {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue May 27 15:18:36 UTC 2025
    - 35.9K bytes
    - Viewed (4)
  10. src/test/java/jcifs/smb1/netbios/NbtExceptionTest.java

        }
    
        @Test
        @DisplayName("getErrorString for name service error with known code")
        void testNameServiceKnown() {
            String expected = "ERR_NAM_SRVC/FMT_ERR: Format ErrorUnknown error code: 1";
            assertEquals(expected, NbtException.getErrorString(NbtException.ERR_NAM_SRVC, NbtException.FMT_ERR));
        }
    
        @Test
        @DisplayName("getErrorString for name service error with unknown code")
        void testNameServiceUnknown() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top