Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for httpdispatcher (0.32 sec)

  1. samples/bookinfo/src/ratings/package.json

    {
      "scripts": {
        "start": "node ratings.js"
      },
      "dependencies": {
        "httpdispatcher": "1.0.0",
        "mongodb": "^3.6.0",
        "mysql": "^2.15.0"
      },
      "private": true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 21 10:39:49 UTC 2022
    - 177 bytes
    - Viewed (0)
  2. samples/bookinfo/src/ratings/ratings.js

    //   See the License for the specific language governing permissions and
    //   limitations under the License.
    
    var http = require('http')
    var dispatcher = require('httpdispatcher')
    
    var port = parseInt(process.argv[2])
    
    var userAddedRatings = [] // used to demonstrate POST functionality
    
    var unavailable = false
    var healthy = true
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/StopDispatcher.java

    import org.gradle.launcher.daemon.logging.DaemonMessages;
    import org.gradle.launcher.daemon.protocol.*;
    import org.gradle.internal.remote.internal.Connection;
    
    public class StopDispatcher {
        private static final Logger LOGGER = Logging.getLogger(StopDispatcher.class);
    
        public boolean dispatch(Connection<Message> connection, Command stopCommand) {
            Throwable failure = null;
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStopClient.java

        private final IdGenerator<UUID> idGenerator;
        private final StopDispatcher stopDispatcher;
    
        public DaemonStopClient(DaemonConnector connector, IdGenerator<UUID> idGenerator) {
            this.connector = connector;
            this.idGenerator = idGenerator;
            this.stopDispatcher = new StopDispatcher();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/StopDispatcherTest.groovy

    import org.gradle.internal.remote.internal.Connection
    import org.gradle.launcher.daemon.protocol.Stop
    import spock.lang.Specification
    
    public class StopDispatcherTest extends Specification {
    
        def dispatcher = new StopDispatcher()
        def connection = Mock(Connection)
    
        def "ignores failed dispatch and does not receive"() {
            given:
            def message = new Stop(UUID.randomUUID())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.launcher.daemon.client.StopDispatcher> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (StopDispatcher.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top