Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,043 for dev3 (0.11 sec)

  1. src/go/parser/testdata/tparams.go2

    func f[a b, 0 /* ERROR "expected '\)', found 0" */ ] ()
    
    // go.dev/issue/49482
    type (
    	_[a *[]int] struct{}
    	_[a *t,] struct{}
    	_[a *t|[]int] struct{}
    	_[a *t|t,] struct{}
    	_[a *t|~t,] struct{}
    	_[a *struct{}|t] struct{}
    	_[a *t|struct{}] struct{}
    	_[a *struct{}|~t] struct{}
    )
    
    // go.dev/issue/51488
    type (
    	_[a *t|t,] struct{}
    	_[a *t|t, b t] struct{}
    	_[a *t|t] struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/term/README.md

    # Go terminal/console support
    
    [![Go Reference](https://pkg.go.dev/badge/golang.org/x/term.svg)](https://pkg.go.dev/golang.org/x/term)
    
    This repository provides Go terminal and console support packages.
    
    ## Download/Install
    
    The easiest way to install is to run `go get -u golang.org/x/term`. You can
    also manually git clone the repository to `$GOPATH/src/golang.org/x/term`.
    
    ## Report Issues / Send Patches
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 727 bytes
    - Viewed (0)
  3. README.md

    [![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
    [![Go.Dev reference](https://img.shields.io/badge/go.dev-reference-blue?logo=go&logoColor=white)](https://pkg.go.dev/gorm.io/gorm?tab=doc)
    
    ## Overview
    
    * Full-Featured ORM
    * Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism, Single-table inheritance)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:20:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. doc/next/5-toolchain.md

    In Go 1.23, overhead should be in the single digit percentages.
    
    <!-- https://go.dev/issue/62737 , https://golang.org/cl/576681,  https://golang.org/cl/577615 -->
    The compiler in Go 1.23 can now overlap the stack frame slots of local variables
    accessed in disjoint regions of a function, which reduces stack usage
    for Go applications.
    
    <!-- https://go.dev/cl/577935 -->
    For 386 and amd64, the compiler will use information from PGO to align certain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. hack/verify-test-code.sh

    errors_expect_no_error=()
    for file in "${all_e2e_files[@]}"
    do
        if grep -E "Expect\(.*\)\.(NotTo|ToNot)\(.*HaveOccurred\(\)" "${file}" > /dev/null
        then
            errors_expect_no_error+=( "${file}" )
        fi
        if grep -E "Expect\(err\)\.To\(gomega\.BeNil\(\)\)" "${file}" > /dev/null
        then
            errors_expect_no_error+=( "${file}" )
        fi
    done
    
    all_e2e_framework_files=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 23 08:51:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

      volumesAttached:
      - devicePath: /dev/disk/by-id/b9772-pvc-c787c67d-14d7-11e7-9baf-42010a800049
        name: kubernetes.io/pd/some-random-clusterb9772-pvc-c787c67d-14d7-11e7-9baf-42010a800049
      - devicePath: /dev/disk/by-id/b9772-pvc-8895a852-fd42-11e6-94d4-42010a800049
        name: kubernetes.io/pd/some-random-clusterb9772-pvc-8895a852-fd42-11e6-94d4-42010a800049
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/variable_info_util.cc

    namespace tensorflow {
    
    Status GetVariableInfosFromInputs(ResourceMgr* rm, DeviceBase* dev,
                                      absl::Span<const Tensor* const> inputs,
                                      absl::Span<const int> variable_indices,
                                      std::vector<VariableInfo>* result) {
      return GetVariableInfosFromInputs(rm, dev, inputs, variable_indices, nullptr,
                                        result);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. doc/next/2-language.md

    ## Changes to the language {#language}
    
    <!-- go.dev/issue/61405, CL 557835, CL 584596 -->
    Go 1.23 makes the (Go 1.22) ["range-over-func" experiment](/wiki/RangefuncExperiment) a part of the language.
    The "range" clause in a "for-range" loop now accepts iterator functions of the following types
    
    	func(func() bool)
    	func(func(K) bool)
    	func(func(K, V) bool)
    
    as range expressions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 757 bytes
    - Viewed (0)
  9. build/build-image/rsyncd.sh

    ALLOW=$(ip route | awk  '/^default via/ { reg = "^[0-9./]+ dev "$5 } ; $0 ~ reg { print $1 }')
    
    CONFDIR="/tmp/rsync.k8s"
    PIDFILE="${CONFDIR}/rsyncd.pid"
    CONFFILE="${CONFDIR}/rsyncd.conf"
    SECRETS="${CONFDIR}/rsyncd.secrets"
    
    mkdir -p "${CONFDIR}"
    
    if [[ -f "${PIDFILE}" ]]; then
      PID=$(cat "${PIDFILE}")
      echo "Cleaning up old PID file: ${PIDFILE}"
      kill "${PID}" &> /dev/null || true
      rm "${PIDFILE}"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/netlink.go

    	// Only the addresses of the current family are returned.
    	// IPv6 link-local and loopback addresses are excluded.
    	GetLocalAddresses(dev string) (sets.Set[string], error)
    	// GetAllLocalAddressesExcept return all local addresses on the node, except from the passed dev.
    	// This is not the same as to take the diff between GetAllLocalAddresses and GetLocalAddresses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 19:02:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top