Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,501 for desk (0.04 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "suggestion",
            "beginner",
            "plough",
            "insurance",
            "hat",
            "toys",
            "plant",
            "trail",
            "wing",
            "ring",
            "desk",
            "yak",
            "teaching",
            "street",
            "cattle",
            "sun",
            "wealth",
            "cabbage",
            "playground",
            "wren",
            "flowers",
            "cobweb",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            def operand11 = moduleId('insurance', 'hat')
            def operand12 = moduleId('toys', 'plant')
            def operand13 = moduleId('trail', 'wing')
            def operand14 = moduleId('ring', 'desk')
            def operand15 = moduleId('yak', 'teaching')
            def operand16 = moduleId('street', 'cattle')
            def operand17 = group('sun')
            def operand18 = moduleId('crib', 'wealth')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. internal/disk/disk.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package disk
    
    // Info stat fs struct is container which holds following values
    // Total - total size of the volume / disk
    // Free - free size of the volume / disk
    // Files - total inodes available
    // Ffree - free inodes available
    // FSType - file system type
    // Major - major dev id
    // Minor - minor dev id
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/DES.java

     * Norbert Hranitzky
     *
     * <p>and modified again by Michael B. Allen
     */
    
    public class DES   {
    
    
        private int[] encryptKeys = new int[32];
        private int[] decryptKeys = new int[32];
    
        private int[] tempInts = new int[2];
    
    
        public DES( ) {
    
        }
    
        // Constructor, byte-array key.
        public DES( byte[] key )    {
            if( key.length == 7 ) {
                byte[] key8 = new byte[8];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/envelope.go

    // the data items they encrypt. A cache (of size cacheSize) is maintained to store the most recently
    // used decrypted DEKs in memory.
    func NewEnvelopeTransformer(envelopeService Service, cacheSize int, baseTransformerFunc func(cipher.Block) (value.Transformer, error)) value.Transformer {
    	var (
    		cache *lru.Cache
    	)
    
    	if cacheSize > 0 {
    		cache = lru.New(cacheSize)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 14:23:50 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. cmd/xl-storage-disk-id-check.go

    	lastSuccess int64
    
    	// atomic time of last time a token was grabbed.
    	lastStarted int64
    
    	// Atomic status of disk.
    	status atomic.Int32
    
    	// Atomic number indicates if a disk is hung
    	waiting atomic.Int32
    }
    
    // newDiskHealthTracker creates a new disk health tracker.
    func newDiskHealthTracker() *diskHealthTracker {
    	d := diskHealthTracker{
    		lastSuccess: time.Now().UnixNano(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/ads_test.go

    		},
    		{
    			desc: "Add virtual service for scoped service with transitively scoped dest svc",
    			ev:   model.EventAdd,
    			vsIndexes: []struct {
    				index int
    				hosts []string
    				dest  string
    			}{{index: 4, hosts: []string{fmt.Sprintf("svc%d%s", 4, svcSuffix)}, dest: "foo.com"}},
    			expectedUpdates: []string{v3.ClusterType, v3.EndpointType},
    		},
    		{
    			desc: "Add instances for transitively scoped svc",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    		},
    		{
    			desc: "empty dek source",
    			originalData: &kmstypes.EncryptedObject{
    				EncryptedData:          []byte{0},
    				EncryptedDEKSourceType: 1,
    				KeyID:                  "1",
    			},
    			expectedError: fmt.Errorf("failed to validate encrypted DEK source: encrypted DEK source is empty"),
    		},
    		{
    			desc: "empty key ID",
    			originalData: &kmstypes.EncryptedObject{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/util/util_test.go

    )
    
    type vaTest struct {
    	desc                 string
    	createNodeName       kubetypes.NodeName
    	pod                  *v1.Pod
    	wantVolume           *v1.Volume
    	wantPersistentVolume *v1.PersistentVolume
    	wantErrorMessage     string
    }
    
    func Test_CreateVolumeSpec(t *testing.T) {
    	for _, test := range []vaTest{
    		{
    			desc:           "inline volume type that does not support csi migration",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	// cache is a thread-safe expiring lru cache which caches decrypted DEKs indexed by their encrypted form.
    	cache       *simpleCache
    	apiServerID string
    }
    
    // NewEnvelopeTransformer returns a transformer which implements a KEK-DEK based envelope encryption scheme.
    // It uses envelopeService to encrypt and decrypt DEKs. Respective DEKs (in encrypted form) are prepended to
    // the data items they encrypt.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
Back to top