Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,454 for sreceiver (0.22 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultMultiRequestWorkerProcessBuilder.java

            workerProcessBuilder.enableJvmMemoryInfoPublishing(true);
            final WorkerProcess workerProcess = workerProcessBuilder.build();
    
            return new MultiRequestClient<IN, OUT>() {
                private Receiver receiver = new Receiver(getBaseName(), outputEventListener);
                private RequestProtocol requestProtocol;
    
                @Override
                public WorkerProcess start() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/reproducible/issue38068.go

    // A type with a couple of inlinable, non-pointer-receiver methods
    // that have params and local variables.
    type A struct {
    	s    string
    	next *A
    	prev *A
    }
    
    // Inlinable, value-received method with locals and parms.
    func (a A) double(x string, y int) string {
    	if y == 191 {
    		a.s = ""
    	}
    	q := a.s + "a"
    	r := a.s + "b"
    	return q + r
    }
    
    // Inlinable, value-received method with locals and parms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jan 16 02:31:08 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ResourceHandlerWrapper.java

            return handler.getMethod() + " /" + handler.getPath();
        }
    
        void received() {
            lock.lock();
            try {
                received = true;
            } finally {
                lock.unlock();
            }
        }
    
        public boolean isReceived() {
            lock.lock();
            try {
                return received;
            } finally {
                lock.unlock();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. samples/open-telemetry/loki/REAME.md

    ```bash
    kubectl apply -f otel.yaml -n istio-system
    ```
    
    With the following configuration, otel-collector-contrib will create a grpc receiver on port `4317`, and output to stdout. You can find more details [here](https://github.com/open-telemetry/opentelemetry-collector-contrib).
    
    ```yaml
        receivers:
          otlp:
            protocols:
              grpc:
              http:
        processors:
          batch:
          attributes:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 20:18:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/controller.go

    import (
    	"sync"
    
    	"istio.io/istio/pkg/cluster"
    )
    
    type ServiceHandler func(*Service, *Service, Event)
    
    // Controller defines an event controller loop.  Proxy agent registers itself
    // with the controller loop and receives notifications on changes to the
    // service topology or changes to the configuration artifacts.
    //
    // The controller guarantees the following consistency requirement: registry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 25 06:54:32 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientConnectionTest.groovy

            0 * staleAddressDetector._
        }
    
        def "handles failed receive"() {
            def failure = new FooException()
    
            given:
            1 * delegate.receive() >> Stub(Message)
            delegate.receive() >> { throw failure }
    
            when:
            connection.receive()
            connection.receive()
    
            then:
            def ex = thrown(DaemonConnectionException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. pkg/util/async/bounded_frequency_runner_test.go

    	"sync"
    	"testing"
    	"time"
    )
    
    // Track calls to the managed function.
    type receiver struct {
    	lock    sync.Mutex
    	run     bool
    	retryFn func()
    }
    
    func (r *receiver) F() {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    	r.run = true
    
    	if r.retryFn != nil {
    		r.retryFn()
    		r.retryFn = nil
    	}
    }
    
    func (r *receiver) reset() bool {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    	was := r.run
    	r.run = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. src/encoding/gob/doc.go

    the receiver accepts the value and stores it in the destination variable.
    Floating-point numbers are always sent using IEEE 754 64-bit precision (see
    below).
    
    Signed integers may be received into any signed integer variable: int, int16, etc.;
    unsigned integers may be received into any unsigned integer variable; and floating
    point values may be received into any floating point variable. However,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. pkg/client/tests/portfoward_test.go

    	// read from the client
    	received := make([]byte, len(pf.expected[port]))
    	n, err := stream.Read(received)
    	if err != nil {
    		return fmt.Errorf("error reading from client for port %d: %v", port, err)
    	}
    	if n != len(pf.expected[port]) {
    		return fmt.Errorf("unexpected length read from client for port %d: got %d, expected %d. data=%q", port, n, len(pf.expected[port]), string(received))
    	}
    
    	// store the received content
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildController.java

         *
         * <p>The client application can receive objects sent using this method by registering a {@link StreamedValueListener}.
         * The client application receives objects in the order they were sent, and before it receives the result of the {@link BuildAction}.</p>
         *
         * <p>This method sends the object asynchronously and does not block until the client application has received the object.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top