Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for conforming (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.h

    //     1
    //   - the specified min/max values are "nudged" so that the result has a zero
    //     that can be exactly expressed
    //   - min=max=0 implies scale=0 and zero_point=0
    //
    // With the above assumptions applied, every conforming specified FakeQuant op
    // can be represented by a UniformQuantizedType. This scheme is not expected to
    // be generalized further in the future and should be considered to be a
    // legacy set of rules.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/mime/mediatype.go

    package mime
    
    import (
    	"errors"
    	"fmt"
    	"slices"
    	"strings"
    	"unicode"
    )
    
    // FormatMediaType serializes mediatype t and the parameters
    // param as a media type conforming to RFC 2045 and RFC 2616.
    // The type and parameter names are written in lower-case.
    // When any of the arguments result in a standard violation then
    // FormatMediaType returns the empty string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/net/http/http.go

    	// parent request.
    	//
    	// The HTTP/2 spec disallows recursive pushes and cross-authority pushes.
    	// Push may or may not detect these invalid pushes; however, invalid
    	// pushes will be detected and canceled by conforming clients.
    	//
    	// Handlers that wish to push URL X should call Push before sending any
    	// data that may trigger a request for URL X. This avoids a race where the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/regexp/testdata/repetition.dat

    NOTE	implicit vs. explicit repetitions : 2009-02-02
    
    # Glenn Fowler <******@****.***>
    # conforming matches (column 4) must match one of the following BREs
    #	NOMATCH
    #	(0,.)\((\(.\),\(.\))(?,?)(\2,\3)\)*
    #	(0,.)\((\(.\),\(.\))(\2,\3)(?,?)\)*
    # i.e., each 3-tuple has two identical elements and one (?,?)
    
    E	((..)|(.))				NULL		NOMATCH
    E	((..)|(.))((..)|(.))			NULL		NOMATCH
    E	((..)|(.))((..)|(.))((..)|(.))		NULL		NOMATCH
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

      /**
       * ```
       * Time ::= CHOICE {
       *   utcTime        UTCTime,
       *   generalTime    GeneralizedTime
       * }
       * ```
       *
       * RFC 5280, section 4.1.2.5:
       *
       * > CAs conforming to this profile MUST always encode certificate validity dates through the year
       * > 2049 as UTCTime; certificate validity dates in 2050 or later MUST be encoded as
       * > GeneralizedTime.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/crypto/x509/parser.go

    			}
    		}
    
    		return nil
    	})
    
    	return
    }
    
    func parseAuthorityKeyIdentifier(e pkix.Extension) ([]byte, error) {
    	// RFC 5280, Section 4.2.1.1
    	if e.Critical {
    		// Conforming CAs MUST mark this extension as non-critical
    		return nil, errors.New("x509: authority key identifier incorrectly marked critical")
    	}
    	val := cryptobyte.String(e.Value)
    	var akid cryptobyte.String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    func (c *sizeEstimator) EstimateCallCost(function, overloadID string, target *checker.AstNode, args []checker.AstNode) *checker.CallEstimate {
    	return nil
    }
    
    // maxCardinality returns the maximum number of times data conforming to the minimum size given could possibly exist in
    // an object serialized to JSON. For cases where a schema is contained under map or array schemas of unbounded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/encoding/csv/reader.go

    	return r != 0 && r != '"' && r != '\r' && r != '\n' && utf8.ValidRune(r) && r != utf8.RuneError
    }
    
    // A Reader reads records from a CSV-encoded file.
    //
    // As returned by [NewReader], a Reader expects input conforming to RFC 4180.
    // The exported fields can be changed to customize the details before the
    // first call to [Reader.Read] or [Reader.ReadAll].
    //
    // The Reader converts all \r\n sequences in its input to plain \n,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

        val encoded = CertificateAdapters.time.toDer(decoded)
    
        assertThat(decoded).isEqualTo(date("2050-01-01T00:00:00.000+0000").time)
        assertThat(encoded).isEqualTo(generalizedTimeDer)
      }
    
      /**
       * Conforming applications MUST be able to process validity dates that are encoded in either
       * UTCTime or GeneralizedTime.
       */
      @Test fun `can read GENERALIZED_TIME before 2050`() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. src/net/ip.go

    // String returns the string form of the IP address ip.
    // It returns one of 4 forms:
    //   - "<nil>", if ip has length 0
    //   - dotted decimal ("192.0.2.1"), if ip is an IPv4 or IP4-mapped IPv6 address
    //   - IPv6 conforming to RFC 5952 ("2001:db8::1"), if ip is a valid IPv6 address
    //   - the hexadecimal form of ip, without punctuation, if no other cases apply
    func (ip IP) String() string {
    	if len(ip) == 0 {
    		return "<nil>"
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top