Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 981 for RECORD (0.15 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/configmaplock.go

    	Client        corev1client.ConfigMapsGetter
    	LockConfig    ResourceLockConfig
    	cm            *v1.ConfigMap
    }
    
    // Get returns the election record from a ConfigMap Annotation
    func (cml *ConfigMapLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    	var record LeaderElectionRecord
    	var err error
    	cml.cm, err = cml.Client.ConfigMaps(cml.ConfigMapMeta.Namespace).Get(ctx, cml.ConfigMapMeta.Name, metav1.GetOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                Object obj = cache.get(session, cacheKey);
                if (obj instanceof Record) {
                    Record record = (Record) obj;
                    result.setVersion(record.version);
                    result.setRepository(
                            getRepository(session, request.getRepositories(), record.repoClass, record.repoId));
                    return result;
                }
            }
    
            Metadata metadata;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/runtime/profbuf.go

    // entry in the fields overflow and overflowTime. The pending overflow
    // entry can be turned into a real record by either the writer or the
    // reader. If the writer is called to write a new record and finds that
    // the output buffer has room for both the pending overflow entry and the
    // new record, the writer emits the pending overflow entry and the new
    // record into the buffer. If the reader is called to read data and finds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/endpointslock.go

    	Client        corev1client.EndpointsGetter
    	LockConfig    ResourceLockConfig
    	e             *v1.Endpoints
    }
    
    // Get returns the election record from a Endpoints Annotation
    func (el *EndpointsLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    	var record LeaderElectionRecord
    	var err error
    	el.e, err = el.Client.Endpoints(el.EndpointsMeta.Namespace).Get(ctx, el.EndpointsMeta.Name, metav1.GetOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cache_simple.go

    func newSimpleCache(clock clock.Clock) cache {
    	return &simpleCache{cache: utilcache.NewExpiringWithClock(clock)}
    }
    
    func (c *simpleCache) get(key string) (*cacheRecord, bool) {
    	record, ok := c.cache.Get(key)
    	if !ok {
    		return nil, false
    	}
    	value, ok := record.(*cacheRecord)
    	return value, ok
    }
    
    func (c *simpleCache) set(key string, value *cacheRecord, ttl time.Duration) {
    	c.cache.Set(key, value, ttl)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  6. pkg/kubelet/active_deadline_test.go

    	pods := newTestPods(1)
    	podStatusProvider := &mockPodStatusProvider{pods: pods}
    	fakeRecorder := &record.FakeRecorder{}
    	fakeClock := testingclock.NewFakeClock(time.Now())
    
    	testCases := []struct {
    		podStatusProvider status.PodStatusProvider
    		recorder          record.EventRecorder
    		clock             clock.Clock
    	}{
    		{podStatusProvider, fakeRecorder, fakeClock},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 08 09:06:42 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/tools/op_quant_spec_getters_gen.cc

    #include "llvm/Support/Regex.h"
    #include "llvm/TableGen/Main.h"
    #include "llvm/TableGen/Record.h"
    #include "llvm/TableGen/TableGenBackend.h"
    #include "mlir/TableGen/Operator.h"  // from @llvm-project
    #include "mlir/TableGen/Trait.h"  // from @llvm-project
    
    using llvm::LessRecord;
    using llvm::raw_ostream;
    using llvm::Record;
    using llvm::RecordKeeper;
    using mlir::tblgen::Operator;
    
    // Helper macro that returns indented os.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 11:18:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pkg/kubelet/active_deadline.go

    	// the recorder to dispatch events when we identify a pod has exceeded active deadline
    	recorder record.EventRecorder
    }
    
    // newActiveDeadlineHandler returns an active deadline handler that can enforce pod active deadline
    func newActiveDeadlineHandler(
    	podStatusProvider status.PodStatusProvider,
    	recorder record.EventRecorder,
    	clock clock.Clock,
    ) (*activeDeadlineHandler, error) {
    
    	// check for all required fields
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              // Plaintext after DECRYPTION
              val message = record.message
              val parameters = record.parameters
    
              if (parameters != null && !message.startsWith("Raw") && !message.startsWith("Plaintext")) {
                if (verbose) {
                  println(record.message)
                  println(record.parameters[0])
                }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. internal/s3select/parquet/reader.go

    	fr, err := parquetgo.NewFileReader(rsc)
    	if err != nil {
    		return nil, errParquetParsingError(err)
    	}
    
    	return &Reader{Closer: rsc, r: fr}, nil
    }
    
    func (pr *Reader) Read(dst sql.Record) (rec sql.Record, rerr error) {
    	nextRow, err := pr.r.NextRow()
    	if err != nil {
    		if err == io.EOF {
    			return nil, err
    		}
    		return nil, errParquetParsingError(err)
    	}
    
    	kvs := jstream.KVS{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 14 13:54:47 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top