Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for strref (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

    import org.gradle.util.Path
    
    
    @ServiceScope(Scope.BuildTree::class)
    interface BuildTreeConfigurationCache {
        /**
         * Determines whether the cache entry can be loaded or needs to be stored or updated.
         */
        fun initializeCacheEntry()
    
        /**
         * Loads the scheduled tasks from cache, if available, or else runs the given function to schedule the tasks and then
         * writes the result to the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_mipsx.go

    //go:noescape
    func Anduintptr(ptr *uintptr, val uintptr) uintptr
    
    //go:noescape
    func Oruintptr(ptr *uintptr, val uintptr) uintptr
    
    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    // NO go:noescape annotation; see atomic_pointer.go.
    func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_s390x.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // func Store(ptr *uint32, val uint32)
    TEXT ·Store(SB), NOSPLIT, $0
    	MOVD	ptr+0(FP), R2
    	MOVWZ	val+8(FP), R3
    	MOVW	R3, 0(R2)
    	SYNC
    	RET
    
    // func Store8(ptr *uint8, val uint8)
    TEXT ·Store8(SB), NOSPLIT, $0
    	MOVD	ptr+0(FP), R2
    	MOVB	val+8(FP), R3
    	MOVB	R3, 0(R2)
    	SYNC
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskIntegrationTest.groovy

        def "displays info about loading and storing in cache"() {
            buildFile << defineCacheableTask()
            when:
            withBuildCache().run "cacheable", "--info"
            then:
            outputContains "Stored cache entry for task ':cacheable' with cache key"
    
            file("build").deleteDir()
    
            when:
            withBuildCache().run "cacheable", "--info"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 17:51:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/embedded_protocol_buffers.h

    // resulting object file.  The C++ shim for protobufs_to_embed[i] is
    // cpp_shims[i] in the returned EmbeddedProtocolBuffers instance.  The contents
    // of all the protocol buffers are embedded into a single .o file whose content
    // is stored in the object_file_data field in the returned
    // EmbeddedProtocolBuffers instance.
    absl::StatusOr<EmbeddedProtocolBuffers> CreateEmbeddedProtocolBuffers(
        absl::string_view target_triple,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. test/codegen/stack.go

    // license that can be found in the LICENSE file.
    
    package codegen
    
    import "runtime"
    
    // This file contains code generation tests related to the use of the
    // stack.
    
    // Check that stack stores are optimized away.
    
    // 386:"TEXT\t.*, [$]0-"
    // amd64:"TEXT\t.*, [$]0-"
    // arm:"TEXT\t.*, [$]-4-"
    // arm64:"TEXT\t.*, [$]0-"
    // mips:"TEXT\t.*, [$]-4-"
    // ppc64x:"TEXT\t.*, [$]0-"
    // s390x:"TEXT\t.*, [$]0-"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. pkg/apis/storagemigration/types.go

    )
    
    // +genclient
    // +genclient:nonNamespaced
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.30
    
    // StorageVersionMigration represents a migration of stored data to the latest
    // storage version.
    type StorageVersionMigration struct {
    	metav1.TypeMeta
    	// Standard object metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/expvar/expvar.go

    }
    
    func (v *Map) Set(key string, av Var) {
    	// Before we store the value, check to see whether the key is new. Try a Load
    	// before LoadOrStore: LoadOrStore causes the key interface to escape even on
    	// the Load path.
    	if _, ok := v.m.Load(key); !ok {
    		if _, dup := v.m.LoadOrStore(key, av); !dup {
    			v.addKey(key)
    			return
    		}
    	}
    
    	v.m.Store(key, av)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/DefaultModuleArtifactCacheTest.groovy

        }
    
        def "stored artifact is put into persistentIndexedCache"() {
            given:
            1 * cacheAccessCoordinator.createCache(persistentCacheFile, _, _) >> persistentIndexedCache
            def key = new ArtifactAtRepositoryKey("RepoID", Stub(ModuleComponentArtifactIdentifier))
            def testFile = folder.createFile("aTestFile")
    
            when:
            index.store(key, testFile, TestHashCodes.hashCodeFrom(10))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. pkg/kube/apimirror/probe.go

    	//
    	// If this is not specified, the default behavior is defined by gRPC.
    	// +optional
    	// +default=""
    	Service *string `json:"service" protobuf:"bytes,2,opt,name=service"`
    }
    
    // Type represents the stored type of IntOrString.
    type Type int64
    
    const (
    	Int    Type = iota // The IntOrString holds an int.
    	String             // The IntOrString holds a string.
    )
    
    type IntOrString struct {
    	Type   Type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top