Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 413 for message1 (0.15 sec)

  1. cni/pkg/nodeagent/ztunnelserver.go

    			}
    		}()
    	}
    }
    
    // ZDS protocol is very simple, for every message sent, and ack is sent.
    // the ack only has temporal correlation (i.e. it is the first and only ack msg after the message was sent)
    // All this to say, that we want to make sure that message to ztunnel are sent from a single goroutine
    // so we don't mix messages and acks.
    // nolint: unparam
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            then:
            result*.message == ["incoming1", "incoming2"]
        }
    
        static class TestConnection implements RemoteConnection<Message> {
            private final def lock = new Object()
            private final def endInput = new Received("end")
            private final def receiveQueue = new LinkedList<Message>()
    
            @Override
            void dispatch(Message message) throws MessageIOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/flag/flag.go

    // For an integer valued flag x, the default output has the form
    //
    //	-x int
    //		usage-message-for-x (default 7)
    //
    // The usage message will appear on a separate line for anything but
    // a bool flag with a one-byte name. For bool flags, the type is
    // omitted and if the flag name is one byte the usage message appears
    // on the same line. The parenthetical default is omitted if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonMessageSerializer.java

            registry.register(OutputMessage.class, new OutputMessageSerializer(registry.build(OutputEvent.class)));
    
            // Default for everything else
            registry.useJavaSerialization(Message.class);
    
            return registry.build(Message.class);
        }
    
        private static class SuccessSerializer implements Serializer<Success> {
            private final Serializer<Object> javaSerializer = new DefaultSerializer<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    type TypeCheckingResults []*TypeCheckingResult
    
    func (rs TypeCheckingResults) String() string {
    	var messages []string
    	for _, r := range rs {
    		message := r.String()
    		if message != "" {
    			messages = append(messages, message)
    		}
    	}
    	return strings.Join(messages, "\n")
    }
    
    // String converts the result to human-readable form as a string.
    func (r *TypeCheckingResult) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. src/crypto/tls/key_agreement.go

    // agreement protocol by generating and processing key exchange messages.
    type keyAgreement interface {
    	// On the server side, the first two methods are called in order.
    
    	// In the case that the key agreement protocol doesn't use a
    	// ServerKeyExchange message, generateServerKeyExchange can return nil,
    	// nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. internal/logger/target/http/http.go

    	}
    
    	return nil
    }
    
    // Cancel - cancels the target.
    // All queued messages are flushed and the function returns afterwards.
    // All messages sent to the target after this function has been called will be dropped.
    func (h *Target) Cancel() {
    	atomic.StoreInt32(&h.status, statusClosed)
    	h.storeCtxCancel()
    
    	// Wait for messages to be sent...
    	h.wg.Wait()
    
    	// Set logch to nil and close it.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

                // as the dispatch method will see the failure
                events.clear();
            }
    
            protected abstract void handle(T message);
    
            public abstract List<Object> getListeners();
    
            protected void queue(T message) {
                if (failure.get() == null) {
                    events.add(message);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            when:
            def result = wrapperExecuter.withTasks('hello').run()
    
            then:
            result.assertNotOutput('changeit')
        }
    
        def "does not leak basic authentication credentials in exception messages"() {
            given:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(getDefaultAuthenticatedBaseUrl())
            server.expect(server.get("/$TEST_DISTRIBUTION_URL").broken())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingModelsWithDependencyResolutionIntegrationTest.groovy

            def model = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
            model.size() == 4
            model[0].message == "project :a classpath = 2"
            model[1].message == "project :b classpath = 1"
            model[2].message == "project :c classpath = 0"
            model[3].message == "project :d classpath = 0"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top