Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 636 for tent (0.12 sec)

  1. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

        }
      }
    
      @Test fun clientSentFramesMustBeMasked() {
        data.write("8100".decodeHex())
        assertFailsWith<ProtocolException> {
          serverReader.processNextFrame()
        }.also { expected ->
          assertThat(expected.message)
            .isEqualTo("Client-sent frames must be masked.")
        }
      }
    
      @Test fun serverSentFramesMustNotBeMasked() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    // object twice with the same data except for the ResourceVersion and SelfLink must be
    // a no-op. A resourceVersion of type uint64 is a 'raw' resourceVersion,
    // intended to be sent directly to or from the backend. A resourceVersion of
    // type string is a 'safe' resourceVersion, intended for consumption by users.
    type Versioner interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                    description: 'LogSeverityFile is the log severity above which logs
                      are sent to the log file. [Default: Info]'
                    type: string
                  logSeverityScreen:
                    description: 'LogSeverityScreen is the log severity above which logs
                      are sent to the stdout. [Default: Info]'
                    type: string
                  logSeveritySys:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  4. cmd/signature-v2.go

    //
    // returns ErrNone if matches. S3 errors otherwise.
    func doesPresignV2SignatureMatch(r *http.Request) APIErrorCode {
    	// r.RequestURI will have raw encoded URI as sent by the client.
    	tokens := strings.SplitN(r.RequestURI, "?", 2)
    	encodedResource := tokens[0]
    	encodedQuery := ""
    	if len(tokens) == 2 {
    		encodedQuery = tokens[1]
    	}
    
    	var (
    		filteredQueries []string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. pilot/test/xds/fake.go

    }
    
    func (f *FakeDiscoveryServer) T() test.Failer {
    	return f.t
    }
    
    // EnsureSynced checks that all ConfigUpdates sent have been established
    // This does NOT ensure that the change has been sent to all proxies; only that PushContext is updated
    // Typically, if trying to ensure changes are sent, its better to wait for the push event.
    
    func (f *FakeDiscoveryServer) EnsureSynced(t test.Failer) {
    	c := f.Discovery.InboundUpdates.Load()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        # monitored resource to ingest logs against.
    
        # Json Log Example:
        # {"log":"[info:2016-02-16T16:04:05.930-08:00] Some log text here\n","stream":"stdout","time":"2016-02-17T00:04:05.931087621Z"}
        # CRI Log Example:
        # 2016-02-17T00:04:05.931087621Z stdout F [info:2016-02-16T16:04:05.930-08:00] Some log text here
        <source>
          @type tail
          path /var/log/containers/*.log
          pos_file /var/log/gcp-containers.log.pos
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/DuplexTest.kt

        executorService.shutdown()
      }
    
      @Test
      @Throws(IOException::class)
      fun http1DoesntSupportDuplex() {
        val call =
          client.newCall(
            Request.Builder()
              .url(server.url("/"))
              .post(AsyncRequestBody())
              .build(),
          )
        assertFailsWith<ProtocolException> {
          call.execute()
        }
      }
    
      @Test
      fun trueDuplexClientWritesFirst() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. test/chan/powser1.go

    // after the rat has been sent to both outputs.
    
    // When multiple generations of split exist, the newest
    // will service requests on one channel, which is
    // always renamed to be out[0]; the oldest will service
    // requests on the other channel, out[1].  All generations but the
    // newest hold queued data that has already been sent to
    // out[0].  When data has finally been sent to out[1],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  9. internal/event/target/mysql.go

    			}
    			return err
    		}
    	}
    
    	eventData, eErr := target.store.Get(key.Name)
    	if eErr != nil {
    		// The last event key in a successful batch will be sent in the channel atmost once by the replayEvents()
    		// Such events will not exist and wouldve been already been sent successfully.
    		if os.IsNotExist(eErr) {
    			return nil
    		}
    		return eErr
    	}
    
    	if err := target.send(eventData); err != nil {
    		if IsConnErr(err) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    // return an error and needs to indicate it has been ignored. Invoking this method
    // is preferable to logging the error - the default behavior is to log but the
    // errors may be sent to a remote server for analysis.
    //
    // TODO(pohly): logcheck:context // HandleErrorWithContext should be used instead of HandleError in code which supports contextual logging.
    func HandleError(err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top