Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,157 for ONCE (0.08 sec)

  1. src/go/printer/testdata/gobuild7.input

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // TODO(rsc): Delete this file once Go 1.17 comes out and we can retire Go 1.15 support.
    
    //go:build !go1.16
    // +build !go1.16
    
    // Package buildtag defines an Analyzer that checks build tags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:46 UTC 2021
    - 369 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/cache/internal/AbstractCrossBuildInMemoryCacheTest.groovy

            def cache = newCache()
    
            expect:
            cache.get("a", function) == a
            cache.get("b", function) == b
            cache.get("a", function) == a
        }
    
        def "creates each entry once"() {
            def a = new Object()
            def b = new Object()
            def c = new Object()
            def function = Mock(Function)
    
            given:
            def cache = newCache()
            cache.put("c", c)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. buildscripts/checkdeps.sh

    	ARCH=$(uname -m)
    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    ## Once OSX has the option, below function is good enough.
    ##
    ## readlink() {
    ##     return /bin/readlink -f "$1"
    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    	cd $(dirname $TARGET_FILE)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. docs/tr/docs/advanced/security/index.md

    !!! tip "İpucu"
        Sonraki bölümler **mutlaka "gelişmiş" olmak zorunda değildir**.
    
        Kullanım şeklinize bağlı olarak, çözümünüz bu bölümlerden birinde olabilir.
    
    ## Önce Öğreticiyi Okuyun
    
    Sonraki bölümler [Tutorial - User Guide: Security](../../tutorial/security/index.md){.internal-link target=_blank} sayfasını okuduğunuzu varsayarak hazırlanmıştır.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:21:37 UTC 2024
    - 700 bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/testdata/issue10978/main.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func undefined()
    
    func defined1() int {
    	// To check multiple errors for a single symbol,
    	// reference undefined more than once.
    	undefined()
    	undefined()
    	return 0
    }
    
    func defined2() {
    	undefined()
    	undefined()
    }
    
    func init() {
    	_ = defined1()
    	defined2()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 05 16:49:07 UTC 2018
    - 478 bytes
    - Viewed (0)
  6. test/fixedbugs/issue19028.go

    // correct code to identify the type reflect.Method.
    // The failing code relied on Type.String() which had
    // formatting that depended on whether a package (in
    // this case "reflect") was imported more than once.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 21:57:56 UTC 2017
    - 454 bytes
    - Viewed (0)
  7. src/crypto/internal/boring/bcache/cache.go

    // A cacheEntry is a single entry in the linked list for a given hash table entry.
    type cacheEntry[K, V any] struct {
    	k    *K                // immutable once created
    	v    atomic.Pointer[V] // read and written atomically to allow updates
    	next *cacheEntry[K, V] // immutable once linked into table
    }
    
    func registerCache(unsafe.Pointer) // provided by runtime
    
    // Register registers the cache with the runtime,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue39711.go

    // license that can be found in the LICENSE file.
    
    package p
    
    // Do not report a duplicate type error for this term list.
    // (Check types after interfaces have been completed.)
    type _ interface {
    	// TODO(rfindley) Once we have full type sets we can enable this again.
    	// Fow now we don't permit interfaces in term lists.
    	// type interface{ Error() string }, interface{ String() string }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 501 bytes
    - Viewed (0)
  9. cluster/addons/rbac/legacy-kubelet-user/kubelet-binding.yaml

    # The GKE environments don't have kubelets with certificates that
    # identify the system:nodes group.  They use the kubelet identity
    # TODO: remove this once new nodes are granted individual identities and the
    # NodeAuthorizer is enabled.
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: kubelet-cluster-admin
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 24 04:11:47 UTC 2019
    - 565 bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    # > the core TensorFlow code will be built once for the host and once for the
    # > target platform.
    # See also https://docs.bazel.build/versions/master/guide.html#build-configurations-and-cross-compilation
    build --distinct_host_configuration=false
    
    # Disable clang extension that rejects type definitions within offsetof. 
    # This was added in clang-16 by https://reviews.llvm.org/D133574.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top