Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,656 for ONCE (0.06 sec)

  1. src/cmd/internal/pgo/serialize.go

    // license that can be found in the LICENSE file.
    
    package pgo
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    )
    
    // Serialization of a Profile allows go tool preprofile to construct the edge
    // map only once (rather than once per compile process). The compiler processes
    // then parse the pre-processed data directly from the serialized format.
    //
    // The format of the serialized output is as follows.
    //
    //      GO PREPROFILE V1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmp.bash

    # assembly listings for packages built with different
    # compiler flags. It is useful to inspect the impact
    # of a compiler change across all std lib packages.
    #
    # The script builds the std library (make.bash) once
    # with FLAGS1 and once with FLAGS2 and compares the
    # "go build <pkg>" assembly output for each package
    # and lists the packages with differences.
    #
    # For packages with differences it leaves files named
    # old.txt and new.txt.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:03:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    	// could take an arbitrary amount of time to be closed, but is never left open once
    	// CouldHaveRunningContainers() returns false.
    	CompletedCh chan<- struct{}
    	// Evict is true if this is a pod triggered eviction - once a pod is evicted some resources are
    	// more aggressively reaped than during normal pod operation (stopped containers).
    	Evict bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. pkg/log/klog.go

    package log
    
    import (
    	goflag "flag"
    	"fmt"
    	"sync"
    
    	"github.com/spf13/pflag"
    	"k8s.io/klog/v2"
    )
    
    var (
    	KlogScope     = RegisterScope("klog", "")
    	configureKlog = sync.Once{}
    )
    
    // EnableKlogWithCobra enables klog to work with cobra / pflags.
    // k8s libraries like client-go use klog.
    func EnableKlogWithCobra() {
    	gf := klogVerboseFlag()
    	pflag.CommandLine.AddFlag(pflag.PFlagFromGoFlag(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. .teamcity/mvnw.cmd

    if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
    
    @REM Execute a user defined script before this one
    if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
    @REM check for pre script, once with legacy .bat ending and once with .cmd ending
    if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
    if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
    :skipRcPre
    
    @setlocal
    
    set ERROR_CODE=0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractConfigurationMetadata.java

                this.configDependencies = ImmutableList.copyOf(dependencies);
            }
        }
    
        public void setConfigDependenciesFactory(Factory<List<ModuleDependencyMetadata>> dependenciesFactory) {
            synchronized (lock) {
                assert this.configDependencies == null; // Can only set once: should really be part of the constructor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/configuration/configuration_manager.go

    	// configuration() retries bootstrapRetries times if poller is not bootstrapped
    	// read-only
    	bootstrapRetries int
    	// Grace period for bootstrapping
    	// read-only
    	bootstrapGracePeriod time.Duration
    	once                 sync.Once
    	// if the configuration is regarded as ready.
    	ready               bool
    	mergedConfiguration runtime.Object
    	lastErr             error
    	// lock must be hold when reading/writing the data fields of poller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 02:02:38 UTC 2017
    - 4.3K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeBuildDependentsPerformanceTest.groovy

        }
    
        @RunFor(
            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["nativeDependents"], iterationMatcher = ".*libA0.*")
        )
        def "run #task"() {
            // TODO Enable once runnable on CI (google test & target platform)
            // 'largeNativeBuild'     | 'project432:buildDependentsExternalComponent111'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/internal/testlog/log.go

    var logger atomic.Value
    
    // SetLogger sets the test logger implementation for the current process.
    // It must be called only once, at process startup.
    func SetLogger(impl Interface) {
    	if logger.Load() != nil {
    		panic("testlog: SetLogger must be called only once")
    	}
    	logger.Store(&impl)
    }
    
    // Logger returns the current test logger implementation.
    // It returns nil if there is no logger.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 19:08:32 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  10. docs/distributed/DECOMMISSION.md

    ```
    
    ### Decommissioning status
    
    ```
    λ mc admin decommission status alias/ http://minio{1...2}/data{1...4}
    Decommissioning rate at 36 MiB/sec [4 TiB/50 TiB]
    Started: 1 minute ago
    ```
    
    Once it is **Complete**
    
    ```
    λ mc admin decommission status alias/ http://minio{1...2}/data{1...4}
    Decommission of pool http://minio{1...2}/data{1...4} is complete, you may now remove it from server command line
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top