Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for 4291 (0.34 sec)

  1. 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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    type keyShare struct {
    	group CurveID
    	data  []byte
    }
    
    // TLS 1.3 PSK Key Exchange Modes. See RFC 8446, Section 4.2.9.
    const (
    	pskModePlain uint8 = 0
    	pskModeDHE   uint8 = 1
    )
    
    // TLS 1.3 PSK Identity. Can be a Session Ticket, or a reference to a saved
    // session. See RFC 8446, Section 4.2.11.
    type pskIdentity struct {
    	label               []byte
    	obfuscatedTicketAge uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    		}
    	}
    
    	return dwarfSecInfo{syms: []loader.Sym{fs}}
    }
    
    /*
     *  Walk DWarfDebugInfoEntries, and emit .debug_info
     */
    
    const (
    	COMPUNITHEADERSIZE = 4 + 2 + 4 + 1
    )
    
    func (d *dwctxt) writeUnitInfo(u *sym.CompilationUnit, abbrevsym loader.Sym, infoEpilog loader.Sym) []loader.Sym {
    	syms := []loader.Sym{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    func TestNullFloat64Param(t *testing.T) {
    	spec := nullTestSpec{"nullfloat64", "float64", [6]nullTestRow{
    		{NullFloat64{31.2, true}, 1, NullFloat64{31.2, true}},
    		{NullFloat64{13.1, false}, 1, NullFloat64{0, false}},
    		{-22.9, 1, NullFloat64{-22.9, true}},
    		{NullFloat64{33.81, true}, 1, NullFloat64{33.81, true}},
    		{NullFloat64{222, false}, 1, NullFloat64{0, false}},
    		{10, NullFloat64{31.2, false}, nil},
    	}}
    	nullTestRun(t, spec)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * 🌐 Add Portuguese translation for `docs/pt/docs/tutorial/header-params.md`. PR [#4921](https://github.com/tiangolo/fastapi/pull/4921) by [@batlopes](https://github.com/batlopes).
    * 🌐 Update `ko/mkdocs.yml` for a missing link. PR [#5020](https://github.com/tiangolo/fastapi/pull/5020) by [@dalinaum](https://github.com/dalinaum).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

        - [Container Images](#container-images-4)
      - [Changelog since v1.29.1](#changelog-since-v1291)
      - [Changes by Kind](#changes-by-kind-4)
        - [Feature](#feature-3)
        - [Bug or Regression](#bug-or-regression-4)
      - [Dependencies](#dependencies-4)
        - [Added](#added-4)
        - [Changed](#changed-4)
        - [Removed](#removed-4)
    - [v1.29.1](#v1291)
      - [Downloads for v1.29.1](#downloads-for-v1291)
        - [Source Code](#source-code-5)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	1287: {region: 0x166, script: 0x5b, flags: 0x0},
    	1288: {region: 0x166, script: 0x5b, flags: 0x0},
    	1289: {region: 0x52, script: 0x5b, flags: 0x0},
    	1290: {region: 0x166, script: 0x5b, flags: 0x0},
    	1291: {region: 0x166, script: 0x5b, flags: 0x0},
    	1292: {region: 0x166, script: 0x5b, flags: 0x0},
    	1293: {region: 0x52, script: 0x5b, flags: 0x0},
    	1294: {region: 0x166, script: 0x5b, flags: 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    ```
    
    The output tensor has shape `[1, 2, 2, 3]` and value:
    
    ```
    x = [[[[1, 2, 3], [4, 5, 6]],
          [[7, 8, 9], [10, 11, 12]]]]
    ```
    
    (3) For the following input of shape `[4, 2, 2, 1]` and block_size of 2:
    
    ```
    x = [[[[1], [3]], [[9], [11]]],
         [[[2], [4]], [[10], [12]]],
         [[[5], [7]], [[13], [15]]],
         [[[6], [8]], [[14], [16]]]]
    ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-gc-stress.test

    GoStart dt=3 g=53 g_seq=32
    GoLabel dt=1 label_string=4
    GoBlock dt=18 reason_string=15 stack=5
    GoUnblock dt=6 g=53 g_seq=33 stack=0
    GoStart dt=4 g=53 g_seq=34
    GoLabel dt=1 label_string=2
    GoBlock dt=2291 reason_string=15 stack=5
    GoUnblock dt=8 g=53 g_seq=35 stack=0
    GoStart dt=4 g=53 g_seq=36
    GoLabel dt=1 label_string=2
    GoBlock dt=32 reason_string=15 stack=5
    GoUnblock dt=68 g=29 g_seq=9 stack=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    *.elb.amazonaws.com.cn
    *.elb.amazonaws.com
    
    // AWS Global Accelerator
    // Submitted by Daniel Massaguer <******@****.***>
    // Reference: d916759d-a08b-4241-b536-4db887383a6a
    awsglobalaccelerator.com
    
    // eero
    // Submitted by Yue Kang <******@****.***>
    // Reference: 264afe70-f62c-4c02-8ab9-b5281ed24461
    eero.online
    eero-stage.online
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top