Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,004 for ONCE (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/internal/cache/default.go

    	"internal/goexperiment"
    )
    
    // Default returns the default cache to use.
    // It never returns nil.
    func Default() Cache {
    	defaultOnce.Do(initDefaultCache)
    	return defaultCache
    }
    
    var (
    	defaultOnce  sync.Once
    	defaultCache Cache
    )
    
    // cacheREADME is a message stored in a README in the cache directory.
    // Because the cache lives outside the normal Go trees, we leave the
    // README as a courtesy to explain where it came from.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            libDefsHeader1 << """
                #pragma once
                #define PREFIX "LOG: "
            """
    
            libraryOtherSourceFile.insertBefore("#include <lib.h>", "#define LOCAL_DEFS <lib_char_defs.h>")
    
            def libDefsHeader2 = file("library/src/main/headers/lib_char_defs.h")
            libDefsHeader2 << """
                #pragma once
                #define PREFIX "LOG: "
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Deferrable.java

     */
    
    package org.gradle.internal;
    
    import java.util.Objects;
    import java.util.Optional;
    import java.util.function.Function;
    import java.util.function.Supplier;
    
    /**
     * An invocation to be executed at most once, but one that can be deferred.
     *
     * @param <T> The type which will be computed.
     */
    public interface Deferrable<T> {
    
        /**
         * The result of the invocation when it is already available.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. samples/ambient-argo/istio/tags.yaml

                default:
                  revision: "1-18-5"
                stable:
                  revision: "1-18-5"
                rapid:
                  revision: "1-19-3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 754 bytes
    - Viewed (0)
  8. src/cmd/go/internal/par/work.go

    // Package par implements parallel execution helpers.
    package par
    
    import (
    	"errors"
    	"math/rand"
    	"sync"
    	"sync/atomic"
    )
    
    // Work manages a set of work items to be executed in parallel, at most once each.
    // The items in the set must all be valid map keys.
    type Work[T comparable] struct {
    	f       func(T) // function to run for each item
    	running int     // total number of runners
    
    	mu      sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r84/TestLauncherCompositeBuildCrossVersionTest.groovy

            then:
            notThrown(Exception)
    
            and:
            onlyTestClass2In(output2)
    
            and:
            if (api == LauncherApi.BUILD_LAUNCHER) {
                // Remove distinction once https://github.com/gradle/gradle/issues/24550 is fixed
                assert noConfigurationCacheAvailableIn(output2)
            } else {
                assert configurationCacheReusedIn(output2)
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

    """
            file("in.txt").text = "in"
    
            when:
            run("merge")
    
            then:
            output.count("calculating value") == 2 // once for task dependency calculation, once for task execution
        }
    
        def "task @InputFiles file collection provider is called once only when task executes"() {
            taskTypeWithInputFileCollection()
            buildFile """
                task merge(type: InputFilesTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top