Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for recordLine (0.36 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    }
    
    func loadEventWithDuration(cache *testWatchCache, count int, interval time.Duration) {
    	for i := 0; i < count; i++ {
    		event := &watchCacheEvent{
    			Key:        fmt.Sprintf("event-%d", i+cache.startIndex),
    			RecordTime: cache.clock.Now().Add(time.Duration(interval.Nanoseconds() * int64(i))),
    		}
    		cache.cache[(i+cache.startIndex)%cache.capacity] = event
    	}
    	cache.endIndex = cache.startIndex + count
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

                    recordTopLevelModules(details);
                }
            }));
    
            // create our own metaInf which runs after mainSpec's files
            // this allows us to generate the deployment descriptor after recording all modules it contains
            CopySpecInternal metaInf = (CopySpecInternal) getMainSpec().addChild().into("META-INF");
            CopySpecInternal descriptorChild = metaInf.addChild();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/registry/core/service/portallocator/allocator.go

    	offset := port - r.portRange.Base
    	return true, offset
    }
    
    // Destroy shuts down internal allocator.
    func (r *PortAllocator) Destroy() {
    	r.alloc.Destroy()
    }
    
    // EnableMetrics enables metrics recording.
    func (r *PortAllocator) EnableMetrics() {
    	registerMetrics()
    	r.metrics = &metricsRecorder{}
    }
    
    // calculateRangeOffset estimates the offset used on the range for statically allocation based on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	removedReleaseAnnotationKey = "k8s.io/removed-release"
    )
    
    const (
    	// The source that is recording the apiserver_request_post_timeout_total metric.
    	// The "executing" request handler returns after the timeout filter times out the request.
    	PostTimeoutSourceTimeoutHandler = "timeout-handler"
    
    	// The source that is recording the apiserver_request_post_timeout_total metric.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  5. docs/LICENSE

         permission under the Copyright and Similar Rights held by the
         Licensor. For purposes of this Public License, where the Licensed
         Material is a musical work, performance, or sound recording,
         Adapted Material is always produced where the Licensed Material is
         synched in timed relation with a moving image.
    
      b. Adapter's License means the license You apply to Your Copyright
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/gofmt/rewrite.go

    	}
    	return val
    }
    
    func isWildcard(s string) bool {
    	rune, size := utf8.DecodeRuneInString(s)
    	return size == len(s) && unicode.IsLower(rune)
    }
    
    // match reports whether pattern matches val,
    // recording wildcard submatches in m.
    // If m == nil, match checks whether pattern == val.
    func match(m map[string]reflect.Value, pattern, val reflect.Value) bool {
    	// Wildcard matches any expression. If it appears multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. src/internal/coverage/cformat/format.go

    	// Pointer to current package state.
    	p *pstate
    	// Counter mode.
    	cm coverage.CounterMode
    }
    
    // pstate records package-level coverage data state:
    // - a table of functions (file/fname/literal)
    // - a map recording the index/ID of each func encountered so far
    // - a table storing execution count for the coverable units in each func
    type pstate struct {
    	// slice of unique functions
    	funcs []fnfile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. src/net/http/httputil/dump.go

    	}
    
    	// Use the actual Transport code to record what we would send
    	// on the wire, but not using TCP.  Use a Transport with a
    	// custom dialer that returns a fake net.Conn that waits
    	// for the full input (and recording it), and then responds
    	// with a dummy response.
    	var buf bytes.Buffer // records the output
    	pr, pw := io.Pipe()
    	defer pr.Close()
    	defer pw.Close()
    	dr := &delegateReader{c: make(chan io.Reader)}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

                                                         &callee_res,
                                                         &callee_needs_recompute)))
                  return failure();
              }
              // If the callee recording is modified, make sure that it will be
              // reprocessed.
              if (callee_needs_recompute) worklist.insert(callee);
            }
            return success();
          };
    
      while (!worklist.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/bitmap.go

    		return false, 0
    	}
    	return true, offset
    }
    
    // Destroy shuts down internal allocator.
    func (r *Range) Destroy() {
    	r.alloc.Destroy()
    }
    
    // EnableMetrics enables metrics recording.
    func (r *Range) EnableMetrics() {
    	registerMetrics()
    	r.metrics = &metricsRecorder{}
    }
    
    // calculateIPOffset calculates the integer offset of ip from base such that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top