Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 179 for watcher (0.27 sec)

  1. src/testing/benchmark.go

    		extLen: len(benchmarkName("", maxprocs)),
    	}
    	var bs []InternalBenchmark
    	for _, Benchmark := range benchmarks {
    		if _, matched, _ := ctx.match.fullName(nil, Benchmark.Name); matched {
    			bs = append(bs, Benchmark)
    			benchName := benchmarkName(Benchmark.Name, maxprocs)
    			if l := len(benchName) + ctx.extLen + 1; l > ctx.maxLen {
    				ctx.maxLen = l
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    ksize_cols * depth]` containing image patches with size
    `ksize_rows x ksize_cols x depth` vectorized in the "depth" dimension. Note
    `out_rows` and `out_cols` are the dimensions of the output patches.}]>:$patches
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_FFTOp : TF_Op<"FFT", [Pure]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    resolveEdges(node, dependencies, NOT_ENDORSE_STRICT_VERSIONS_DEPENDENCY_SPEC, edgeWasProcessed, resolveState);
                } else {
                    // We have some batched up conflicts. Resolve the first, and continue traversing the graph
                    if (moduleConflictHandler.hasConflicts()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	defaultUpperBoundCapacity = 100 * 1024
    )
    
    // watchCacheEvent is a single "watch event" that is send to users of
    // watchCache. Additionally to a typical "watch.Event" it contains
    // the previous value of the object to enable proper filtering in the
    // upper layers.
    type watchCacheEvent struct {
    	Type            watch.EventType
    	Object          runtime.Object
    	ObjLabels       labels.Set
    	ObjFields       fields.Set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/func.go

    	// package-sym split is at first dot after last the / that comes before
    	// any characters illegal in a package path.
    
    	lastSlashIdx := 0
    	for i, r := range name {
    		// Catches cases like:
    		// * example.foo[sync/atomic.Uint64].
    		// * example%2ecom.foo[sync/atomic.Uint64].
    		//
    		// Note that name is still escaped; unescape occurs after splitPkg.
    		if !escapedImportPathOK(r) {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

              "in": "query",
              "name": "watch",
              "schema": {
                "type": "boolean",
                "uniqueItems": true
              }
            }
          ]
        },
        "/apis/batch/v1/watch/jobs": {
          "get": {
            "description": "watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server.go

    	s.restfulCont.Filter(otelrestful.OTelFilter("kubelet", append(opts, otelrestful.WithTracerProvider(tp))...))
    }
    
    // addMetricsBucketMatcher adds a regexp matcher and the relevant bucket to use when
    // it matches. Please be aware this is not thread safe and should not be used dynamically
    func (s *Server) addMetricsBucketMatcher(bucket string) {
    	s.metricsBuckets.Insert(bucket)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  8. src/testing/testing.go

    // The argument to the -run, -bench, and -fuzz command-line flags is an unanchored regular
    // expression that matches the test's name. For tests with multiple slash-separated
    // elements, such as subtests, the argument is itself slash-separated, with
    // expressions matching each name element in turn. Because it is unanchored, an
    // empty expression matches any string.
    // For example, using "matching" to mean "whose name contains":
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"all-matcher", "allee", int64(math.MaxInt32), "ByUser", "0s", "?"}}},
    		}, {
    			fs: flowcontrol.FlowSchema{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "some-matcher",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    				Spec: flowcontrol.FlowSchemaSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * of reads may not be immediately reflected on the algorithm's data structures. These structures
       * are guarded by a lock and operations are applied in batches to avoid lock contention. The
       * penalty of applying the batches is spread across threads so that the amortized cost is slightly
       * higher than performing just the operation without enforcing the capacity constraint.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top