Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 651 for storeVcs (0.29 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

            }
            then:
            instant.snapshottingStarted < instant.invalidated
            instant.invalidated < instant.snapshottingFinished
            !vfs.findSnapshot(location).present
        }
    
         def "only stores non-invalidated children when using store action"() {
            def location = '/my/location/new'
            when:
            start {
                vfs.store(location, { vfsStore ->
                    instant.snapshottingStarted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/analyzers_bench_test.go

    					Name:             name.Name.String(),
    					Namespace:        name.Namespace.String(),
    				},
    				Spec: s.MustNewInstance(),
    			})
    		}
    
    		return false
    	})
    	stores := map[cluster.ID]model.ConfigStore{
    		"fake": store,
    	}
    	ctx := local.NewContext(stores, make(chan struct{}), func(name config.GroupVersionKind) {})
    
    	b.ResetTimer()
    	for _, a := range All() {
    		b.Run(a.Metadata().Name+"-bench", func(b *testing.B) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/internal/coverage/defs.go

    // CovCounterMagic holds the magic string for a coverage counter-data file.
    var CovCounterMagic = [4]byte{'\x00', '\x63', '\x77', '\x6d'}
    
    // CounterFileVersion stores the most recent counter data file version.
    const CounterFileVersion = 1
    
    // CounterFileHeader stores files header information for a counter-data file.
    type CounterFileHeader struct {
    	Magic     [4]byte
    	Version   uint32
    	MetaHash  [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/internal/zstd/window.go

    // Copyright 2023 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.
    
    package zstd
    
    // window stores up to size bytes of data.
    // It is implemented as a circular buffer:
    // sequential save calls append to the data slice until
    // its length reaches configured size and after that,
    // save calls overwrite previously saved data at off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:49:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue20335.go

    // compile
    
    // Copyright 2017 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.
    
    // Issue 20335: don't reorder loads with stores.
    // This test should fail on the ssacheck builder
    // without the fix in the CL that added this file.
    // TODO: check the generated assembly?
    
    package a
    
    import "sync/atomic"
    
    func f(p, q *int32) bool {
    	x := *q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 22:16:08 UTC 2017
    - 467 bytes
    - Viewed (0)
  6. src/runtime/wincallback.go

    // The MOV instruction loads R12 with the callback index, and the
    // B instruction branches to callbackasm1.
    // callbackasm1 takes the callback index from R12 and
    // indexes into an array that stores information about each callback.
    // It then calls the Go implementation for that callback.
    #include "textflag.h"
    
    TEXT runtime·callbackasm(SB),NOSPLIT|NOFRAME,$0
    `)
    	for i := 0; i < maxCallback; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:29:51 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            when:
            executer.withStackTraceChecksDisabled()
            withBuildCache().run "jar"
            then:
            noneSkipped()
            and:
            def storeOps = compileJavaStoreOperations()
            storeOps.size() == 1
            storeOps.first().failure.contains("response status 401: Unauthorized")
        }
    
        private List<BuildOperationRecord> compileJavaStoreOperations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/cafile/cafile.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cafile
    
    import (
    	"istio.io/istio/pkg/security"
    )
    
    // CACertFilePath stores the OS CA certificate file path
    var CACertFilePath = ""
    
    func init() {
    	CACertFilePath = security.GetOSRootFilePath()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 10 21:51:09 UTC 2021
    - 790 bytes
    - Viewed (0)
  9. test/fixedbugs/issue8036.go

    // run
    
    // Copyright 2014 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.
    
    // Issue 8036. Stores necessary for stack scan being eliminated as redundant by optimizer.
    
    package main
    
    import "runtime"
    
    type T struct {
    	X *int
    	Y *int
    	Z *int
    }
    
    type TI [3]uintptr
    
    //go:noinline
    func G() (t TI) {
    	t[0] = 1
    	t[1] = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 633 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package etcd has a generic implementation of a registry that
    // stores things in etcd.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 03 07:15:45 UTC 2017
    - 737 bytes
    - Viewed (0)
Back to top