Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 851 for Storep (0.11 sec)

  1. src/crypto/aes/asm_ppc64x.s

    	MOVD	CNT, CTR           // mtctr 7          Set the counter to 8 (rounds)
    
    	// The expanded decrypt key is the expanded encrypt key stored in reverse order.
    	// Move OUTDEC to the last key location, and store in descending order.
    	ADD	$160, OUTDEC, OUTDEC
    	BLT	loop128
    	ADD	$32, OUTDEC, OUTDEC
    	BEQ	l192
    	ADD	$32, OUTDEC, OUTDEC
    	JMP	l256
    
    loop128:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. pkg/util/iptree/iptree.go

    //                   |
    //                    \ -------- 192.168.129.0/28
    
    // node is an element of radix tree with a netip.Prefix optimized to store IP prefixes.
    type node[T any] struct {
    	// prefix network CIDR
    	prefix netip.Prefix
    	// public nodes are used to store values
    	public bool
    	val    T
    
    	child [2]*node[T] // binary tree
    }
    
    // mergeChild allow to compress the tree
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            @Override
            String getStoreAction() {
                return "stored"
            }
        }
    
        static class StateStoreWithProblemsDetails implements HasBuildActions, HasProblems {
            @Override
            String getStoreAction() {
                return "stored with ${problemsString}"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    		RecordTime:      w.clock.Now(),
    	}
    
    	// We can call w.store.Get() outside of a critical section,
    	// because the w.store itself is thread-safe and the only
    	// place where w.store is modified is below (via updateFunc)
    	// and these calls are serialized because reflector is processing
    	// events one-by-one.
    	previous, exists, err := w.store.Get(elem)
    	if err != nil {
    		return err
    	}
    	if exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/runtime/mcache.go

    // of gclinkptr values. Code should store references to gclinks
    // as gclinkptr, not as *gclink.
    type gclink struct {
    	next gclinkptr
    }
    
    // A gclinkptr is a pointer to a gclink, but it is opaque
    // to the garbage collector.
    type gclinkptr uintptr
    
    // ptr returns the *gclink form of p.
    // The result should be used for accessing fields, not stored
    // in other data structures.
    func (p gclinkptr) ptr() *gclink {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    		GroupPriorityMinimum: groupPriorityMinimum,
    		VersionPriority:      versionPriority,
    	}
    	rdm.cache.Store(nil)
    }
    
    func (rdm *resourceDiscoveryManager) SetGroups(source Source, groups []apidiscoveryv2.APIGroupDiscovery) {
    	rdm.lock.Lock()
    	defer rdm.lock.Unlock()
    
    	rdm.apiGroups = nil
    	rdm.cache.Store(nil)
    
    	for _, group := range groups {
    		for _, version := range group.Versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. pkg/credentialprovider/plugin/plugin.go

    	// against this list of match URLs.
    	matchImages []string
    
    	// cache stores DockerConfig entries with an expiration time based on the cache duration
    	// returned from the credential provider plugin.
    	cache cache.Store
    	// defaultCacheDuration is the default duration credentials are cached in-memory if the auth plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    |`gradle.properties` file
    |`GRADLE_USER_HOME`
    |Stored in a `gradle.properties` file in the `<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>`.
    
    |3
    |`gradle.properties` file
    |Project Root Dir
    |Stored in a `gradle.properties` file in a project directory, then its parent project’s directory up to the project’s root directory.
    
    |4
    |`gradle.properties` file
    |`GRADLE_HOME`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. security/pkg/pki/util/keycertbundle.go

    package util
    
    import (
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/rsa"
    	"crypto/tls"
    	"crypto/x509"
    	"errors"
    	"fmt"
    	"os"
    	"sync"
    	"time"
    )
    
    // KeyCertBundle stores the cert, private key, cert chain and root cert for an entity. It is thread safe.
    // The cert and privKey should be a public/private key pair.
    // The cert should be verifiable from the rootCert through the certChain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    		},
    		[]string{"operation", "type"},
    	)
    	objectCounts = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    			Name:           "apiserver_storage_objects",
    			Help:           "Number of stored objects at the time of last check split by kind. In case of a fetching error, the value will be -1.",
    			StabilityLevel: compbasemetrics.STABLE,
    		},
    		[]string{"resource"},
    	)
    	dbTotalSize = compbasemetrics.NewGaugeVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top