Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for 12p6 (0.11 sec)

  1. CHANGELOG/CHANGELOG-1.26.md

    ## Dependencies
    
    ### Added
    _Nothing has changed._
    
    ### Changed
    - github.com/google/cel-go: [v0.12.6 → v0.12.7](https://github.com/google/cel-go/compare/v0.12.6...v0.12.7)
    - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp: v0.35.0 → v0.35.1
    
    ### Removed
    _Nothing has changed._
    
    
    
    # v1.26.8
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_CONNECTS                        = 0x4B5 // 1205
    	SYS_CONNECTSERVER                   = 0x4B5 // 1205
    	SYS_DISCONNE                        = 0x4B6 // 1206
    	SYS_DISCONNECTSERVER                = 0x4B6 // 1206
    	SYS_JOINWORK                        = 0x4B7 // 1207
    	SYS_JOINWORKUNIT                    = 0x4B7 // 1207
    	SYS_LEAVEWOR                        = 0x4B8 // 1208
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReport.out

    log4j:log4j:1.2.16 FAILED
       Failures:
          - Could not resolve log4j:log4j:1.2.16.
              - Module 'log4j:log4j' has been rejected:
                   Cannot select module with conflict on capability 'log4j:log4j:1.2.16' also provided by [org.slf4j:log4j-over-slf4j:1.7.10(compile)]
    
    log4j:log4j:1.2.16 FAILED
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    org.slf4j:log4j-over-slf4j:1.7.10 FAILED
       Failures:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/dist/README

    5. Using go_bootstrap, build the remaining Go 1.x standard library and commands.
    
    Because of backward compatibility, although the steps above say Go 1.20.6,
    in practice any release ≥ Go 1.20.6 but < Go 1.x will work as the bootstrap base.
    Releases ≥ Go 1.x are very likely to work as well.
    
    See https://go.dev/s/go15bootstrap for more details about the original bootstrap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/route_classic.go

    	nativeEndian.PutUint32(b[20:24], uint32(m.Seq))
    	attrs, err := marshalAddrs(b[w.bodyOff:], m.Addrs)
    	if err != nil {
    		return nil, err
    	}
    	if attrs > 0 {
    		nativeEndian.PutUint32(b[12:16], uint32(attrs))
    	}
    	return b, nil
    }
    
    func (w *wireFormat) parseRouteMessage(typ RIBType, b []byte) (Message, error) {
    	if len(b) < w.bodyOff {
    		return nil, errMessageTooShort
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/crypto/aes/block.go

    	byteorder.BePutUint32(dst[8:12], s2)
    	byteorder.BePutUint32(dst[12:16], s3)
    }
    
    // Decrypt one block from src into dst, using the expanded key xk.
    func decryptBlockGo(xk []uint32, dst, src []byte) {
    	_ = src[15] // early bounds check
    	s0 := byteorder.BeUint32(src[0:4])
    	s1 := byteorder.BeUint32(src[4:8])
    	s2 := byteorder.BeUint32(src[8:12])
    	s3 := byteorder.BeUint32(src[12:16])
    
    	// First round just XORs input with key.
    	s0 ^= xk[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/sizeof_test.go

    	}{
    		{Sym{}, 32, 64},
    		{Type{}, 64, 104},
    		{Map{}, 12, 24},
    		{Forward{}, 20, 32},
    		{Func{}, 32, 56},
    		{Struct{}, 12, 24},
    		{Interface{}, 0, 0},
    		{Chan{}, 8, 16},
    		{Array{}, 12, 16},
    		{FuncArgs{}, 4, 8},
    		{ChanArgs{}, 4, 8},
    		{Ptr{}, 4, 8},
    		{Slice{}, 4, 8},
    	}
    
    	for _, tt := range tests {
    		want := tt._32bit
    		if _64bit {
    			want = tt._64bit
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:08:44 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReportReplaced.out

        | org.gradle.jvm.version         |          | 11           |
       Selection reasons:
          - By conflict resolution: On capability log4j:log4j use slf4j in place of log4j
    
    log4j:log4j:1.2.16 -> org.slf4j:log4j-over-slf4j:1.7.10
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    org.slf4j:log4j-over-slf4j:1.7.10
    \--- compileClasspath
    
    org.slf4j:slf4j-log4j12:1.6.1
      Variant compile:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/component_capabilities.adoc

       > Could not resolve log4j:log4j:1.2.16.
         Required by:
             project : > org.apache.zookeeper:zookeeper:3.4.9
          > Module 'log4j:log4j' has been rejected:
               Cannot select module with conflict on capability 'log4j:log4j:1.2.16' also provided by [org.slf4j:log4j-over-slf4j:1.7.10(compile)]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go

    	state[3] = 0x6b206574
    
    	state[4] = binary.LittleEndian.Uint32(key[0:4])
    	state[5] = binary.LittleEndian.Uint32(key[4:8])
    	state[6] = binary.LittleEndian.Uint32(key[8:12])
    	state[7] = binary.LittleEndian.Uint32(key[12:16])
    	state[8] = binary.LittleEndian.Uint32(key[16:20])
    	state[9] = binary.LittleEndian.Uint32(key[20:24])
    	state[10] = binary.LittleEndian.Uint32(key[24:28])
    	state[11] = binary.LittleEndian.Uint32(key[28:32])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top