Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 361 for 0008 (0.04 sec)

  1. pkg/apis/core/annotation_key_constants.go

    	//
    	// It should be a comma-separated list of CIDRs, e.g. `0.0.0.0/0` to
    	// allow full access (the default) or `18.0.0.0/8,56.0.0.0/8` to allow
    	// access only from the CIDRs currently allocated to MIT & the USPS.
    	//
    	// Not all cloud providers support this annotation, though AWS & GCE do.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	//
    	// It should be a comma-separated list of CIDRs, e.g. `0.0.0.0/0` to
    	// allow full access (the default) or `18.0.0.0/8,56.0.0.0/8` to allow
    	// access only from the CIDRs currently allocated to MIT & the USPS.
    	//
    	// Not all cloud providers support this annotation, though AWS & GCE do.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server_test.go

    			rawNodeIPs:     nil,
    			bindAddress:    "0.0.0.0",
    			expectedFamily: v1.IPv4Protocol,
    			expectedIPv4:   "127.0.0.1",
    			expectedIPv6:   "::1",
    		},
    		{
    			name:           "Bind address 0.0.0.0 and node with IPv4 InternalIP set",
    			rawNodeIPs:     []net.IP{netutils.ParseIPSloppy("192.168.1.1")},
    			bindAddress:    "0.0.0.0",
    			expectedFamily: v1.IPv4Protocol,
    			expectedIPv4:   "192.168.1.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    	ALDEORAD:  3<<30 | 0x1c5<<21 | 0x08<<10,
    	ALDEORAW:  2<<30 | 0x1c5<<21 | 0x08<<10,
    	ALDEORAH:  1<<30 | 0x1c5<<21 | 0x08<<10,
    	ALDEORAB:  0<<30 | 0x1c5<<21 | 0x08<<10,
    	ALDEORALD: 3<<30 | 0x1c7<<21 | 0x08<<10,
    	ALDEORALW: 2<<30 | 0x1c7<<21 | 0x08<<10,
    	ALDEORALH: 1<<30 | 0x1c7<<21 | 0x08<<10,
    	ALDEORALB: 0<<30 | 0x1c7<<21 | 0x08<<10,
    	ALDEORD:   3<<30 | 0x1c1<<21 | 0x08<<10,
    	ALDEORW:   2<<30 | 0x1c1<<21 | 0x08<<10,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. architecture/standards/0002-avoid-using-java-serialization.md

    # ADR-0002 - Avoid using Java serialization
    
    ## Date
    
    2012-12-01
    
    ## Context
    
    In Gradle we often need to serialize in-memory objects for caching, or to transmit them across process barriers, etc.
    Java serialization is one way to implement this, however, despite its simplicity of implementation, it has several drawbacks:
    
    - **Performance:**
    Java's built-in serialization mechanism is often slower compared to other serialization solutions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. architecture/standards/0005-introduce-core-ui-architecture-module.md

    # ADR-0004 - Introduce a UI architecture module to the core platform
    
    ## Date
    
    2024-02-07
    
    ## Context
    
    The Gradle core platform provides many services to the Gradle platforms and builds logic. One such group of services allows logic to interact with the build user, to provide diagnostics, progress information, prompt for questions, and so on. Currently, these services are part of the core platform runtime architecture module.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 23:19:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. architecture/standards/0001-use-architectural-decision-records.md

    # ADR-0001 - Use Architectural Decision Records
    
    ## Date
    
    2023-12-01
    
    ## Context
    
    In a distributed team with many subteams, the best solution to communicate decisions is to use a format accessible by everyone in charge of development.
    
    We use *Specification* and *Discovery* documents stored in Google Drive, but they present some downsides:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-ECDSA

    00000330  00 0a 0d 00 00 06 03 01  02 40 00 00 16 03 01 00  |.........@......|
    00000340  04 0e 00 00 00                                    |.....|
    >>> Flow 3 (client to server)
    00000000  16 03 01 01 fd 0b 00 01  f9 00 01 f6 00 01 f3 30  |...............0|
    00000010  82 01 ef 30 82 01 58 a0  03 02 01 02 02 10 5c 19  |...0..X.......\.|
    00000020  c1 89 65 83 55 6f dc 0b  c9 b9 93 9f e9 bc 30 0d  |..e.Uo........0.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. architecture/standards/0004-use-a-platform-architecture.md

    # ADR-0004 - Use a platform-oriented architecture for Gradle
    
    ## Date
    
    2024-02-07
    
    ## Context
    
    The Gradle code base is essentially a large monolith, without strong internal boundaries.
    This has a number of negative effects on productivity, including:
    
    - Unclear ownership of code.
    - Difficult to focus on one particular area.
    - Unintended coupling between areas of the code, including tests.
    
    ## Decision
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ECDHE-ECDSA-AES256-GCM-SHA384

    00000030  76 96 1e 2a 57 74 4b db  9a 11 0a af 06 ea 3b 20  |v..*WtK.......; |
    00000040  a8 81 51 9d 41 ef f1 f9  23 87 18 cb c0 2c 00 00  |..Q.A...#....,..|
    00000050  11 ff 01 00 01 00 00 0b  00 04 03 00 01 02 00 17  |................|
    00000060  00 00 16 03 03 02 0e 0b  00 02 0a 00 02 07 00 02  |................|
    00000070  04 30 82 02 00 30 82 01  62 02 09 00 b8 bf 2d 47  |.0...0..b.....-G|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top