Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for Matcher (0.2 sec)

  1. src/database/sql/sql.go

    	err  error // deferred error for easy chaining
    	rows *Rows
    }
    
    // Scan copies the columns from the matched row into the values
    // pointed at by dest. See the documentation on [Rows.Scan] for details.
    // If more than one row matches the query,
    // Scan uses the first row and discards the rest. If no row matches
    // the query, Scan returns [ErrNoRows].
    func (r *Row) Scan(dest ...any) error {
    	if r.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    				if getForAction.GetResource().Resource == groupResource.String() {
    					matchedTarget = &tc.metricsTarget[i]
    				}
    			}
    		}
    		assert.NotNil(t, matchedTarget, "this request should have matched one of the metric specs")
    		assert.Equal(t, "qps", getForAction.GetMetricName(), "the metric name requested should have been qps, as specified in the metric spec")
    
    		metrics.Items = []cmapi.MetricValue{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      local -r staging_path=$1
      local -r gs_url=$2
      local -r tar=$3
      local -r hash=$4
      local -r basename_tar=$(basename "${tar}")
    
      #check whether this tar alread exists and has the same hash
      #if it matches, then don't bother uploading it again
    
      #remote_tar_md5 checks the remote location for the existing tarball and its md5
      #staging_path example gs://kubernetes-staging-PROJECT/kubernetes-devel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top