Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,505 for ONCE (0.29 sec)

  1. apache-maven/src/assembly/shared/run.cmd

      %*
    if ERRORLEVEL 1 goto error
    goto end
    
    :error
    set ERROR_CODE=1
    
    :end
    @endlocal & set ERROR_CODE=%ERROR_CODE%
    
    if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost
    @REM check for post script, once with legacy .bat ending and once with .cmd ending
    if exist "%USERPROFILE%\mavenrc_post.bat" echo Warning: The mavenrc_post.bat script is deprecated and will be removed in a future version. >&2
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 05 22:52:54 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	"strconv"
    	"strings"
    	"sync"
    	"syscall"
    	"testing"
    	"time"
    	"unicode"
    )
    
    var overcommit struct {
    	sync.Once
    	value int
    	err   error
    }
    
    // requireOvercommit skips t if the kernel does not allow overcommit.
    func requireOvercommit(t *testing.T) {
    	t.Helper()
    
    	overcommit.Once.Do(func() {
    		var out []byte
    		out, overcommit.err = os.ReadFile("/proc/sys/vm/overcommit_memory")
    		if overcommit.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. src/strings/export_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strings
    
    func (r *Replacer) Replacer() any {
    	r.once.Do(r.buildOnce)
    	return r.r
    }
    
    func (r *Replacer) PrintTrie() string {
    	r.once.Do(r.buildOnce)
    	gen := r.r.(*genericReplacer)
    	return gen.printNode(&gen.root, 0)
    }
    
    func (r *genericReplacer) printNode(t *trieNode, depth int) (s string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/storage_factory.go

    			Codec:          storageConfig.Codec,
    		}
    		cacher, err := cacherstorage.NewCacherFromConfig(cacherConfig)
    		if err != nil {
    			return nil, func() {}, err
    		}
    		var once sync.Once
    		destroyFunc := func() {
    			once.Do(func() {
    				cacher.Stop()
    				d()
    			})
    		}
    
    		return cacher, destroyFunc, nil
    	}
    }
    
    func objectTypeToArgs(obj runtime.Object) []interface{} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    type metaRuntimeInterface interface {
    	runtime.Object
    	metav1.Object
    }
    
    // serializationResult captures a result of serialization.
    type serializationResult struct {
    	// once should be used to ensure serialization is computed once.
    	once sync.Once
    
    	// raw is serialized object.
    	raw []byte
    	// err is error from serialization.
    	err error
    }
    
    // serializationsCache is a type for caching serialization results.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. pkg/registry/core/componentstatus/validator.go

    }
    
    type HttpServer struct {
    	Addr        string
    	Port        int
    	Path        string
    	EnableHTTPS bool
    	TLSConfig   *tls.Config
    	Validate    ValidatorFn
    	Prober      httpprober.Prober
    	Once        sync.Once
    }
    
    type ServerStatus struct {
    	// +optional
    	Component string `json:"component,omitempty"`
    	// +optional
    	Health string `json:"health,omitempty"`
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 13:08:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/lifecycle_signals.go

    func newNamedChannelWrapper(name string) lifecycleSignal {
    	return &namedChannelWrapper{
    		name: name,
    		once: sync.Once{},
    		ch:   make(chan struct{}),
    	}
    }
    
    type namedChannelWrapper struct {
    	name string
    	once sync.Once
    	ch   chan struct{}
    }
    
    func (e *namedChannelWrapper) Signal() {
    	e.once.Do(func() {
    		close(e.ch)
    	})
    }
    
    func (e *namedChannelWrapper) Signaled() <-chan struct{} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases.go

    // [Enabled], which computes the effective value of
    // GODEBUG=gotypesalias=... by invoking the type checker. The Enabled
    // function is expensive and should be called once per task (e.g.
    // package import), not once per call to NewAlias.
    func NewAlias(enabled bool, pos token.Pos, pkg *types.Package, name string, rhs types.Type) *types.TypeName {
    	if enabled {
    		tname := types.NewTypeName(pos, pkg, name, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/BUILD

    # Experimental filesystem C APIs for TensorFlow.
    # Will be moved in proper place once all filesystems are converted to the
    # modular framework.
    load("//tensorflow:tensorflow.bzl", "tf_cc_test")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # This is only for plugins
    cc_library(
        name = "filesystem_interface",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // times before a context cancellation is detected. If immediate is true, condition will be
    // invoked before waiting and guarantees that condition is invoked at least once, regardless of
    // whether the context has been cancelled.
    func PollUntilContextCancel(ctx context.Context, interval time.Duration, immediate bool, condition ConditionWithContextFunc) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top