Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,474 for tracks (0.15 sec)

  1. src/cmd/link/internal/ld/outbuf.go

    const outbufMode = 0775
    
    // OutBuf is a buffered file writer.
    //
    // It is similar to the Writer in cmd/internal/bio with a few small differences.
    //
    // First, it tracks the output architecture and uses it to provide
    // endian helpers.
    //
    // Second, it provides a very cheap offset counter that doesn't require
    // any system calls to read the value.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  2. src/strconv/atoi.go

    // Checking them in this one function lets all the parsers skip over them simply.
    // Underscore must appear only between digits or between a base prefix and a digit.
    func underscoreOK(s string) bool {
    	// saw tracks the last character (class) we saw:
    	// ^ for beginning of number,
    	// 0 for a digit or base prefix,
    	// _ for an underscore,
    	// ! for none of the above.
    	saw := '^'
    	i := 0
    
    	// Optional sign.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. pkg/proxy/util/nfacct/nfacct_linux.go

    	reader := bytes.NewReader(msg)
    	// skip the first 4 bytes (netfilter generic message).
    	if _, err := reader.Seek(nl.SizeofNfgenmsg, io.SeekCurrent); err != nil {
    		return nil, err
    	}
    
    	// attrsProcessed tracks the number of processed attributes.
    	var attrsProcessed int
    
    	// length and type of netlink attribute.
    	var length, attrType uint16
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	podsSynced bool
    
    	// Tracks all running per-pod goroutines - per-pod goroutine will be
    	// processing updates received through its corresponding channel. Sending
    	// a message on this channel will signal the corresponding goroutine to
    	// consume podSyncStatuses[uid].pendingUpdate if set.
    	podUpdates map[types.UID]chan struct{}
    	// Tracks by UID the termination status of a pod - syncing, terminating,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/PairedStatsAccumulator.java

    import com.google.common.annotations.J2ktIncompatible;
    import com.google.common.primitives.Doubles;
    
    /**
     * A mutable object which accumulates paired double values (e.g. points on a plane) and tracks some
     * basic statistics over all the values added so far. This class is not thread safe.
     *
     * @author Pete Gillin
     * @since 20.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    // that associates usage of the specified resource based on the number of items
    // returned by the specified listing function.
    type objectCountEvaluator struct {
    	// GroupResource that this evaluator tracks.
    	// It is used to construct a generic object count quota name
    	groupResource schema.GroupResource
    	// A function that knows how to list resources by namespace.
    	// TODO move to dynamic client in future
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. pkg/apis/resource/types.go

    	"k8s.io/kubernetes/pkg/apis/core"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ResourceClaim describes which resources are needed by a resource consumer.
    // Its status tracks whether the resource has been allocated and what the
    // resulting attributes are.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    type ResourceClaim struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	return map_PodSchedulingContextStatus
    }
    
    var map_ResourceClaim = map[string]string{
    	"":         "ResourceClaim describes which resources are needed by a resource consumer. Its status tracks whether the resource has been allocated and what the resulting attributes are.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.",
    	"metadata": "Standard object metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

    auto* phase2_bridge_compilation_status =
        tensorflow::monitoring::Counter<1>::New(
            "/tensorflow/core/tf2xla/api/v1/"
            "phase2_compilation_status", /*metric_name*/
            "Tracks the compilation status of the non-mlir bridge",
            /* metric description */ "status" /* metric label */);
    
    auto* phase2_bridge_compilation_time = tsl::monitoring::Sampler<1>::New(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

        }
    
        @Override
        public void enableUserStandardOutputListeners() {
            // Create all of the pipeline eagerly as soon as this is enabled, to track the state of build operations.
            // All of the pipelines do this, so should instead have a single stage that tracks this for all pipelines and that can replay the current state to new pipelines
            // Then, a pipeline can be added for each listener as required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top