Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,681 for associateBy (0.31 sec)

  1. guava/src/com/google/common/collect/ArrayTable.java

     * combination of row and column keys. (This is rarely optimal unless the table is extremely dense.)
     * Finally, every possible combination of row and column keys is always considered to have a value
     * associated with it: It is not possible to "remove" a value, only to replace it with {@code null},
     * which will still appear when iterating over the table's contents in a foreach loop or a call to a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. pkg/controller/util/selectors/bimultimap.go

    				continue
    			}
    			if s.selector.Matches(set) {
    				selecting.objects[s.key] = s
    			}
    		}
    		// Associate selecting with labeled.
    		m.selectingByLabeled[labelsKey] = selecting
    	}
    	selecting := m.selectingByLabeled[labelsKey]
    	selecting.refCount++
    	for _, sObject := range selecting.objects {
    		// Associate labeled with selecting.
    		labeled := m.labeledBySelecting[sObject.selectorKey]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 21:41:32 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	// SerializationTracker tracks the latency incurred in serialization
    	// (json or protobuf) of the response object.
    	// NOTE: serialization and writing of the serialized raw bytes to the
    	// associated http ResponseWriter object are interleaved, and hence
    	// the latency measured here will include the time spent writing the
    	// serialized raw bytes to the http ResponseWriter object.
    	SerializationTracker DurationTracker
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/base/timings.go

    import (
    	"fmt"
    	"io"
    	"strings"
    	"time"
    )
    
    var Timer Timings
    
    // Timings collects the execution times of labeled phases
    // which are added through a sequence of Start/Stop calls.
    // Events may be associated with each phase via AddEvent.
    type Timings struct {
    	list   []timestamp
    	events map[int][]*event // lazily allocated
    }
    
    type timestamp struct {
    	time  time.Time
    	label string
    	start bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/types.go

    // ActivePodsFunc returns pods bound to the kubelet that are active (i.e. non-terminal state)
    type ActivePodsFunc func() []*v1.Pod
    
    // PodCleanedUpFunc returns true if all resources associated with a pod have been reclaimed.
    type PodCleanedUpFunc func(*v1.Pod) bool
    
    // statsFunc returns the usage stats if known for an input pod.
    type statsFunc func(pod *v1.Pod) (statsapi.PodStats, bool)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. src/go/ast/commentmap_test.go

    // T
    type T struct {
    	a, b, c int // associated with a, b, c
    	// associated with x, y
    	x, y float64    // float values
    	z    complex128 // complex value
    }
    // also associated with T
    
    // x
    var x = 0 // x = 0
    // also associated with x
    
    // f1
    func f1() {
    	/* associated with s1 */
    	s1()
    	// also associated with s1
    	
    	// associated with s2
    	
    	// also associated with s2
    	s2() // line comment for s2
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    // are stored. This value will be fed to the "file_prefix" tensor to restore the
    // variables.
    // * `function_aliases` maps the actual function name to the function alias.
    // This associates the quantized functions to the original functions' aliases.
    // If there were no function aliases in the input model, this should be empty.
    // * `asset_file_defs` include information about the assets, if any, that are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/topology/topology.go

    	NumNUMANodes int
    	CPUDetails   CPUDetails
    }
    
    // CPUsPerCore returns the number of logical CPUs are associated with
    // each core.
    func (topo *CPUTopology) CPUsPerCore() int {
    	if topo.NumCores == 0 {
    		return 0
    	}
    	return topo.NumCPUs / topo.NumCores
    }
    
    // CPUsPerSocket returns the number of logical CPUs are associated with
    // each socket.
    func (topo *CPUTopology) CPUsPerSocket() int {
    	if topo.NumSockets == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/net/textproto/header.go

    // Add adds the key, value pair to the header.
    // It appends to any existing values associated with key.
    func (h MIMEHeader) Add(key, value string) {
    	key = CanonicalMIMEHeaderKey(key)
    	h[key] = append(h[key], value)
    }
    
    // Set sets the header entries associated with key to
    // the single element value. It replaces any existing
    // values associated with key.
    func (h MIMEHeader) Set(key, value string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioTargetBinary.java

        /**
         * Returns the name of the Gradle component associated with this binary
         */
        @Input
        String getComponentName();
    
        /**
         * Returns the visual studio project name associated with this binary
         */
        @Input
        String getVisualStudioProjectName();
    
        /**
         * Returns the visual studio project configuration name associated with this binary
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top