Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 271 for SUCCESS (0.14 sec)

  1. src/main/webapp/WEB-INF/view/common/admin/crud/header.jsp

    		<la:message key="labels.crud_title_details" />
    	</c:if>
    </h3>
    <div class="card-tools">
    	<c:choose>
    		<c:when test="${crudMode == null}">
    			<la:link href="createnew" styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
    				<em class="fa fa-plus">
    				<la:message key="labels.crud_link_create" />
    			</la:link>
    		</c:when>
    		<c:otherwise>
    			<la:link href="../list" styleClass="btn btn-primary btn-xs">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 1K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

        }
    
        /**
         * Append message content in success style.
         * By default, bold green
         *
         * @param message the message to append
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder success(Object message) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Nov 02 09:29:52 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/DuplexTest.kt

            .build()
        val log: BlockingQueue<String?> = LinkedBlockingQueue()
        enableProtocol(Protocol.HTTP_2)
        val body =
          MockSocketHandler()
            .sendResponse("success!")
            .exhaustResponse()
            .cancelStream()
        server.enqueue(
          MockResponse
            .Builder()
            .clearHeaders()
            .socketHandler(body)
            .build(),
        )
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTransformTest.java

     *
     * @author Nishant Thakkar
     */
    @NullUnmarked
    public class FuturesTransformTest extends AbstractChainedListenableFutureTest<String> {
      private static final String RESULT_DATA = "SUCCESS";
      private static final UndeclaredThrowableException WRAPPED_EXCEPTION =
          new UndeclaredThrowableException(EXCEPTION);
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComSetInformationResponse.java

     */
    
    package jcifs.internal.smb1.com;
    
    import jcifs.Configuration;
    import jcifs.internal.smb1.ServerMessageBlock;
    
    /**
     * Response for SMB1 COM_SET_INFORMATION command.
     *
     * This response indicates the success or failure of setting file
     * attributes and last write time.
     *
     * @author mbechler
     */
    public class SmbComSetInformationResponse extends ServerMessageBlock {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java

                // Update channel with new transport
                channel.setTransport(newTransport);
                channel.setState(ChannelState.ESTABLISHED);
    
                // Clear failover state on success
                failoverStates.remove(channel.getChannelId());
    
                log.info("Successfully recovered channel {}", channel.getChannelId());
    
            } catch (Exception e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji.jsp

                                        </la:link>
                                        <la:link href="createnew/${f:u(dictId)}"
                                                 styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
                                            <em class="fa fa-plus">
                                            <la:message key="labels.dict_kuromoji_link_create"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Mar 27 06:24:23 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/pac/PacUnicodeStringTest.java

            // The check method should return the same string instance
            String result = pacString.check(testString);
            assertSame(testString, result, "The check method should return the original string on success.");
        }
    
        /**
         * Tests the {@link PacUnicodeString#check(String)} method with a null string when the pointer is zero.
         * Note: Current implementation throws NullPointerException for null strings.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/SmbCircuitBreaker.java

         *
         * @return failure count
         */
        public int getFailureCount() {
            return failureCount.get();
        }
    
        /**
         * Get current success count (in HALF_OPEN state)
         *
         * @return success count
         */
        public int getSuccessCount() {
            return successCount.get();
        }
    
        /**
         * Get time since last state change
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt

        fun executeOn(executorService: ExecutorService) {
          client.dispatcher.assertLockNotHeld()
    
          var success = false
          try {
            executorService.execute(this)
            success = true
          } catch (e: RejectedExecutionException) {
            failRejected(e)
          } finally {
            if (!success) {
              client.dispatcher.finished(this) // This call is no longer running!
            }
          }
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 17.8K bytes
    - Viewed (0)
Back to top