Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 981 for RECORD (0.08 sec)

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

    	lease      *coordinationv1.Lease
    }
    
    // Get returns the election record from a Lease spec
    func (ll *LeaseLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    	var err error
    	ll.lease, err = ll.Client.Leases(ll.LeaseMeta.Namespace).Get(ctx, ll.LeaseMeta.Name, metav1.GetOptions{})
    	if err != nil {
    		return nil, nil, err
    	}
    	record := LeaseSpecToLeaderElectionRecord(&ll.lease.Spec)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 04 16:02:26 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. src/log/slog/handler.go

    }
    
    func (s *handleState) appendNonBuiltIns(r Record) {
    	// preformatted Attrs
    	if pfa := s.h.preformattedAttrs; len(pfa) > 0 {
    		s.buf.WriteString(s.sep)
    		s.buf.Write(pfa)
    		s.sep = s.h.attrSep()
    		if s.h.json && pfa[len(pfa)-1] == '{' {
    			s.sep = ""
    		}
    	}
    	// Attrs in Record -- unlike the built-in ones, they are in groups started
    	// from WithGroup.
    	// If the record has no Attrs, don't output any groups.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. tensorflow/c/tf_status.h

    TF_CAPI_EXPORT extern void TF_DeleteStatus(TF_Status*);
    
    // Record <code, msg> in *s.  Any previous information is lost.
    // A common use is to clear a status: TF_SetStatus(s, TF_OK, "");
    TF_CAPI_EXPORT extern void TF_SetStatus(TF_Status* s, TF_Code code,
                                            const char* msg);
    
    // Record <key, value> as a payload in *s. The previous payload having the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. pkg/kubelet/server/stats/fs_resource_analyzer.go

    	cachedVolumeStats atomic.Value
    	startOnce         sync.Once
    	eventRecorder     record.EventRecorder
    }
    
    var _ fsResourceAnalyzerInterface = &fsResourceAnalyzer{}
    
    // newFsResourceAnalyzer returns a new fsResourceAnalyzer implementation
    func newFsResourceAnalyzer(statsProvider Provider, calcVolumePeriod time.Duration, eventRecorder record.EventRecorder) *fsResourceAnalyzer {
    	r := &fsResourceAnalyzer{
    		statsProvider: statsProvider,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 16:16:37 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. src/testing/slogtest/slogtest.go

    	// the body of f must appear on a single line whose first
    	// non-whitespace characters are "l.".
    	f func(*slog.Logger)
    	// If mod is not nil, it is called to modify the Record
    	// generated by the Logger before it is passed to the Handler.
    	mod func(*slog.Record)
    	// checks is a list of checks to run on the result.
    	checks []check
    }
    
    var cases = []testCase{
    	{
    		name:        "built-ins",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/node_ipam_controller.go

    			}
    		}
    	}
    
    	ic := &Controller{
    		cloud:                cloud,
    		kubeClient:           kubeClient,
    		eventBroadcaster:     record.NewBroadcaster(record.WithContext(ctx)),
    		clusterCIDRs:         clusterCIDRs,
    		serviceCIDR:          serviceCIDR,
    		secondaryServiceCIDR: secondaryServiceCIDR,
    		allocatorType:        allocatorType,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

      private val testLogHandler =
        object : Handler() {
          override fun publish(record: LogRecord) {
            val recorded =
              when (record.loggerName) {
                TaskRunner::class.java.name -> recordTaskRunner
                Http2::class.java.name -> recordFrames
                "javax.net.ssl" -> recordSslDebug && !sslExcludeFilter.matches(record.message)
                else -> false
              }
    
            if (recorded) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (1)
  8. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

        # entries that are up to 100KB in size.
        <filter kubernetes.**>
          @type record_transformer
          enable_ruby true
          <record>
            log ${record['log'].length > 100000 ? "[Trimmed]#{record['log'][0..100000]}..." : record['log']}
          </record>
        </filter>
    
        # Do not collect fluentd's own logs to avoid infinite loops.
        <match fluent.**>
          @type null
        </match>
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  9. pkg/monitoring/disabled.go

    // Increment implements Metric
    func (dm *disabledMetric) Increment() {}
    
    // Name implements Metric
    func (dm *disabledMetric) Name() string {
    	return dm.name
    }
    
    // Record implements Metric
    func (dm *disabledMetric) Record(value float64) {}
    
    // RecordInt implements Metric
    func (dm *disabledMetric) RecordInt(value int64) {}
    
    // Register implements Metric
    func (dm *disabledMetric) Register() error {
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. internal/config/dns/store.go

    func (e ErrBucketConflict) Error() string {
    	return e.Bucket + " bucket conflict error: " + e.Err.Error()
    }
    
    // Store dns record store
    type Store interface {
    	Put(bucket string) error
    	Get(bucket string) ([]SrvRecord, error)
    	Delete(bucket string) error
    	List() (map[string][]SrvRecord, error)
    	DeleteRecord(record SrvRecord) error
    	Close() error
    	String() string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top