Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 85 for seas (0.06 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go

    	return Overhead
    }
    
    func (c *chacha20poly1305) Seal(dst, nonce, plaintext, additionalData []byte) []byte {
    	if len(nonce) != NonceSize {
    		panic("chacha20poly1305: bad nonce length passed to Seal")
    	}
    
    	if uint64(len(plaintext)) > (1<<38)-64 {
    		panic("chacha20poly1305: plaintext too large")
    	}
    
    	return c.seal(dst, nonce, plaintext, additionalData)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    	requestsExecuting sets.Set[*request]
    
    	// index is the position of this queue among those in its queueSet.
    	index int
    
    	// seatsInUse is the total number of "seats" currently occupied
    	// by all the requests that are currently executing in this queue.
    	seatsInUse int
    }
    
    // queueSum tracks the sum of initial seats, max seats, and
    // totalWork from all requests in a given queue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/gl/stopwords.txt

    nós
    nun
    nunha
    nuns
    nunhas
    o
    os
    ou
    ó
    ós
    para
    pero
    pode
    pois
    pola
    polas
    polo
    polos
    por
    que
    se
    senón
    ser
    seu
    seus
    sexa
    sido
    sobre
    súa
    súas
    tamén
    tan
    te
    ten
    teñen
    teño
    ter
    teu
    teus
    ti
    tido
    tiña
    tiven
    túa
    túas
    un
    unha
    unhas
    uns
    vos
    vosa
    vosas
    voso
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 932 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/fifo_list.go

    	// Peek returns the oldest request without removing it.
    	Peek() (*request, bool)
    
    	// Length returns the number of requests in the list.
    	Length() int
    
    	// QueueSum returns the sum of initial seats, final seats, and
    	// additional latency aggregated from all requests in this queue.
    	QueueSum() queueSum
    
    	// Walk iterates through the list in order of oldest -> newest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:05:53 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  5. internal/http/dial_linux.go

    				_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPCNT, 5)
    
    				// Wait time after successful probe in seconds.
    				// ~ cat /proc/sys/net/ipv4/tcp_keepalive_intvl (defaults to 75 secs, we reduce it to 15 secs)
    				_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, 15)
    			}
    
    			// Set tcp user timeout in addition to the keep-alive - tcp-keepalive is not enough to close a socket
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/config.go

    	*MutatingWorkEstimatorConfig `json:"mutatingWorkEstimatorConfig,omitempty"`
    
    	// MinimumSeats is the minimum number of seats a request must occupy.
    	MinimumSeats uint64 `json:"minimumSeats,omitempty"`
    
    	// MaximumSeatsLimit is an upper limit on the max seats a request can occupy.
    	//
    	// NOTE: work_estimate_seats_samples metric uses the value of maximumSeats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/taskOnlyIf/tests/taskOnlyIf-info.out

    ...
    
    > Task :hello SKIPPED
    Skipping task ':hello' as task onlyIf 'there is no property skipHello' is false.
    :hello (Thread[included builds,5,main]) completed. Took 0.018 secs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 201 bytes
    - Viewed (0)
  8. tests/integration/security/fuzz/fuzzers/wfuzz/wfuzz.yaml

      selector:
        matchLabels:
          app: wfuzz
      template:
        metadata:
          labels:
            app: wfuzz
          annotations:
            # Do not inject Envoy in the fuzzer side to make sure the server Envoy sees the original fuzzed request.
            "sidecar.istio.io/inject": "false"
        spec:
          containers:
          - name: wfuzz
            image: ghcr.io/xmendez/wfuzz:v3.1.0
            command: [ "sleep" ]
            args: [ "365d" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 23 20:55:02 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go

    	state[12] = 0
    	state[13] = binary.LittleEndian.Uint32(nonce[0:4])
    	state[14] = binary.LittleEndian.Uint32(nonce[4:8])
    	state[15] = binary.LittleEndian.Uint32(nonce[8:12])
    }
    
    func (c *chacha20poly1305) seal(dst, nonce, plaintext, additionalData []byte) []byte {
    	if !cpu.X86.HasSSSE3 {
    		return c.sealGeneric(dst, nonce, plaintext, additionalData)
    	}
    
    	var state [16]uint32
    	setupState(&state, &c.key, nonce)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/secretbox/secretbox.go

    	var nonce [nonceSize]byte
    	n, err := rand.Read(nonce[:])
    	if err != nil {
    		return nil, err
    	}
    	if n != nonceSize {
    		return nil, fmt.Errorf("unable to read sufficient random bytes")
    	}
    	return secretbox.Seal(nonce[:], data, &nonce, &t.key), nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 16:31:31 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top