Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for keyId (0.11 sec)

  1. pkg/filewatcher/worker.go

    )
    
    type worker struct {
    	mu sync.RWMutex
    
    	// watcher is an fsnotify watcher that watches the parent
    	// dir of watchedFiles.
    	dirWatcher *fsnotify.Watcher
    
    	// The worker maintains a map of channels keyed by watched file path.
    	// The worker watches parent path of given path,
    	// and filters out events of given path, then redirect
    	// to the result channel.
    	// Note that for symlink files, the content in received events
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/net/nss.go

    type nssConf struct {
    	mtime   time.Time              // time of nsswitch.conf modification
    	err     error                  // any error encountered opening or parsing the file
    	sources map[string][]nssSource // keyed by database (e.g. "hosts")
    }
    
    type nssSource struct {
    	source   string // e.g. "compat", "files", "mdns4_minimal"
    	criteria []nssCriterion
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:15:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. src/crypto/hmac/hmac.go

    // Copyright 2009 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 hmac implements the Keyed-Hash Message Authentication Code (HMAC) as
    defined in U.S. Federal Information Processing Standards Publication 198.
    An HMAC is a cryptographic hash that uses a key to sign a message.
    The receiver verifies the hash by recomputing it using the same key.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/covdata/subtractintersect.go

    // away most of the grubby details of reading coverage data files.
    type sstate struct {
    	mm    *metaMerge
    	inidx int
    	mode  string
    	// Used only for intersection; keyed by pkg/fn ID, it keeps track of
    	// just the set of functions for which we have data in the current
    	// input directory.
    	imm map[pkfunc]struct{}
    }
    
    func (s *sstate) Usage(msg string) {
    	if len(msg) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 12:50:46 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. pkg/kubelet/server/stats/volume_stat_calculator.go

    				// SupportsMetrics() will prevent panics in that case.
    				if v.SupportsMetrics() {
    					metricVolumes[name] = v
    				}
    			}
    		}
    	}
    
    	// Get volume specs for the pod - key'd by volume name
    	volumesSpec := make(map[string]v1.Volume)
    	for _, v := range s.pod.Spec.Volumes {
    		volumesSpec[v.Name] = v
    	}
    
    	// Call GetMetrics on each Volume and copy the result to a new VolumeStats.FsStats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:55:10 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. src/encoding/gob/type_test.go

    		Register(tc.t)
    
    		tct := reflect.TypeOf(tc.t)
    		ct, _ := nameToConcreteType.Load(tc.name)
    		if ct != tct {
    			t.Errorf("nameToConcreteType[%q] = %v, want %v", tc.name, ct, tct)
    		}
    		// concreteTypeToName is keyed off the base type.
    		if tct.Kind() == reflect.Pointer {
    			tct = tct.Elem()
    		}
    		if n, _ := concreteTypeToName.Load(tct); n != tc.name {
    			t.Errorf("concreteTypeToName[%v] got %v, want %v", tct, n, tc.name)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compilation_cache.h

        return executable->SizeOfGeneratedCodeInBytes();
      }
    
      return 0;
    }
    }  // namespace device_compilation_cache_internal
    
    // Cache to store compiled HLO, executables and related metadata keyed by
    // `DeviceCompilationClusterSignature`. The cache owns the stored
    // CompilationResults and Executables.
    // Currently no cache eviction policy is implemented and the cache grows without
    // bound.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/claiminfo.go

    	// a prepared resource
    	annotations map[string][]kubecontainer.Annotation
    	prepared    bool
    }
    
    // claimInfoCache is a cache of processed resource claims keyed by namespace/claimname.
    type claimInfoCache struct {
    	sync.RWMutex
    	state     state.CheckpointState
    	claimInfo map[string]*ClaimInfo
    }
    
    // newClaimInfoFromClaim creates a new claim info from a resource claim.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ctrlflow/ctrlflow.go

    	pass      *analysis.Pass // transient; nil after construction
    }
    
    // CFGs has two maps: funcDecls for named functions and funcLits for
    // unnamed ones. Unlike funcLits, the funcDecls map is not keyed by its
    // syntax node, *ast.FuncDecl, because callMayReturn needs to do a
    // look-up by *types.Func, and you can get from an *ast.FuncDecl to a
    // *types.Func but not the other way.
    
    type declInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	syncHandler func(groupVersion schema.GroupVersion) error
    
    	syncedInitialSet chan struct{}
    
    	// queue is where incoming work is placed to de-dup and to allow "easy" rate limited requeues on errors
    	// this is actually keyed by a groupVersion
    	queue workqueue.TypedRateLimitingInterface[schema.GroupVersion]
    }
    
    // NewCRDRegistrationController returns a controller which will register CRD GroupVersions with the auto APIService registration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top