Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 315 for approach (0.13 sec)

  1. src/net/netgo_netcgo.go

    // license that can be found in the LICENSE file.
    
    //go:build netgo && netcgo
    
    package net
    
    func init() {
    	// This will give a compile time error about the unused constant.
    	// The advantage of this approach is that the gc compiler
    	// actually prints the constant, making the problem obvious.
    	"Do not use both netgo and netcgo build tags."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 22:26:09 UTC 2023
    - 453 bytes
    - Viewed (0)
  2. releasenotes/notes/837475-caBundle.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 33052
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 27 22:13:33 UTC 2021
    - 183 bytes
    - Viewed (0)
  3. src/net/tcpconn_keepalive_conf_windows_test.go

    	// 	doesn't provide any ways to retrieve the current TCP keep-alive settings, therefore
    	// 	we're not able to run the test suite similar to Unix-like OS's on Windows.
    	//  Try to find another proper approach to test the keep-alive settings on old Windows.
    	if !windows.SupportTCPKeepAliveIdle() || !windows.SupportTCPKeepAliveInterval() || !windows.SupportTCPKeepAliveCount() {
    		t.Skip("skipping on windows")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 987 bytes
    - Viewed (0)
  4. releasenotes/notes/37737.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 33052
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 02 21:24:00 UTC 2022
    - 183 bytes
    - Viewed (0)
  5. architecture/standards/README.md

    For now we just have this global repository of ADRs.
    If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs.
    
    Our aim is to keep the process lightweight and approachable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 06:30:44 UTC 2024
    - 546 bytes
    - Viewed (0)
  6. releasenotes/notes/37183.yaml

    docs:
      - '[usage] https://istio.io/latest/docs/ops/integrations/spire/'
      - '[design] https://docs.google.com/document/d/1zJP6QJukLzckTbdY42ZMLkulGXz4gWzH9SwOh4xoe0A'
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 31 18:31:36 UTC 2022
    - 376 bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/ApiMavenResolver.groovy

            // Configures the majority of the infrastructure required for resolving dependencies.
            // This is the dependency-injection-less approach to obtain a `RepositorySystem`.
            // Maven generally recommends using Eclipse Sisu and Guice for DI, however this approach is also supported.
            RepositorySystem repoSystem = new RepositorySystemSupplier().get()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/README.md

    dialects and utilities for
    
    1. TensorFlow
    2. XLA
    3. TF Lite
    
    See [MLIR's website](https://mlir.llvm.org) for complete documentation.
    
    ## Getting started
    
    Building dialects and utilities here follow the standard approach using
    `bazel` as the rest of TensorFlow.
    
    ### Using local LLVM repo
    
    To develop across MLIR core and TensorFlow, it is useful to override the repo to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 21:50:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/compress/bzip2/move_to_front.go

    	for i := 0; i < n; i++ {
    		m[i] = byte(i)
    	}
    	return moveToFrontDecoder(m)
    }
    
    func (m moveToFrontDecoder) Decode(n int) (b byte) {
    	// Implement move-to-front with a simple copy. This approach
    	// beats more sophisticated approaches in benchmarking, probably
    	// because it has high locality of reference inside of a
    	// single cache line (most move-to-front operations have n < 64).
    	b = m[n]
    	copy(m[1:], m[:n])
    	m[0] = b
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/dist/README

    This program, dist, is the bootstrapping tool for the Go distribution.
    
    As of Go 1.5, dist and other parts of the compiler toolchain are written
    in Go, making bootstrapping a little more involved than in the past.
    The approach is to build the current release of Go with an earlier one.
    
    The process to install Go 1.x, for x ≥ 22, is:
    
    1. Build cmd/dist with Go 1.20.6.
    2. Using dist, build Go 1.x compiler toolchain with Go 1.20.6.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top