Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 587 for admitted (0.19 sec)

  1. samples/tcp-echo/tcp-echo-ipv6.yaml

        app: tcp-echo
        service: tcp-echo
    spec:
      ipFamilyPolicy: SingleStack
      ipFamilies:
      - IPv6
      ports:
      - name: tcp
        port: 9000
      - name: tcp-other
        port: 9001
      # Port 9002 is omitted intentionally for testing the pass through filter chain.
      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/compress/flate/dict_decoder.go

    //     Any valid stream must start with a literal insertion if no preset dictionary
    //     is used.
    //
    //   - Backward copies: Runs of one or more symbols are copied from previously
    //     emitted data. Backward copies come as the tuple (dist, length) where dist
    //     determines how far back in the stream to copy from and length determines how
    //     many bytes to copy. Note that it is valid for the length to be greater than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe_arm64.s

    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // carryPropagate works exactly like carryPropagateGeneric and uses the
    // same AND, ADD, and LSR+MADD instructions emitted by the compiler, but
    // avoids loading R0-R4 twice and uses LDP and STP.
    //
    // See https://golang.org/issues/43145 for the main compiler issue.
    //
    // func carryPropagate(v *Element)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. src/internal/trace/raw/event.go

    	Ev      event.Type
    	Args    []uint64
    	Data    []byte
    }
    
    // String returns the canonical string representation of the event.
    //
    // This format is the same format that is parsed by the TextReader
    // and emitted by the TextWriter.
    func (e *Event) String() string {
    	spec := e.Version.Specs()[e.Ev]
    
    	var s strings.Builder
    	s.WriteString(spec.Name)
    	for i := range spec.Args {
    		s.WriteString(" ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/events/v1beta1/types_swagger_doc_generated.go

    	"series":                   "series is data about the Event series this event represents or nil if it's a singleton Event.",
    	"reportingController":      "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. docs/features/https.md

           */
          private fun trustedCertificatesInputStream(): InputStream {
            ... // Full source omitted. See sample.
          }
    
          private fun trustManagerForCertificates(inputStream: InputStream): X509TrustManager {
            ... // Full source omitted. See sample.
          }
        ```
    === ":material-language-java: Java"
        ```java
          private final OkHttpClient client;
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/Problems.java

    @Incubating
    @ServiceScope(Scope.BuildTree.class)
    public interface Problems {
    
        /**
         * Return a problem reporter associated with a plugin.
         * <p>
         * The namespace provides separation for identical problems emitted from different components (Gradle core and third-party plugins).
         *
         * @return The problem reporter.
         * @since 8.6
         */
        ProblemReporter forNamespace(String namespace);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/cmd/nm/doc.go

    //	d	static data segment symbol
    //	B	bss segment symbol
    //	b	static bss segment symbol
    //	C	constant address
    //	U	referenced but undefined symbol
    //
    // Following established convention, the address is omitted for undefined
    // symbols (type U).
    //
    // The options control the printed output:
    //
    //	-n
    //		an alias for -sort address (numeric),
    //		for compatibility with other nm commands
    //	-size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

      message QuantizationUnit {
        // Type of the op, ex: Conv2D, MatMul, Einsum... The node_name field can
        // be omitted if it is intended to match all nodes with this type.
        string op_type = 1;
        // Name of the node. This field accepts re2 regex format. If the node name
        // has enough granularity, the op_type field can be omitted.
        string node_name = 2;
        // The function scope. If set, only ops and nodes under specified functions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/cmd/gofmt/simplify.go

    	// literal type may be omitted
    	if inner, ok := x.(*ast.CompositeLit); ok {
    		if match(nil, typ, reflect.ValueOf(inner.Type)) {
    			inner.Type = nil
    		}
    	}
    	// if the outer literal's element type is a pointer type *T
    	// and the element is & of a composite literal of type T,
    	// the inner &T may be omitted.
    	if ptr, ok := astType.(*ast.StarExpr); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:06:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top