Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for h_scale (0.09 sec)

  1. pkg/ctrlz/assets/templates/layouts/base.html

    <html lang="en" itemscope itemtype="https://schema.org/WebPage">
        <head>
            <meta charset="utf-8">
            <meta http-equiv="X-UA-Compatible" content="IE=edge">
            <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
            <meta name="theme-color" content="#466BB0"/>
            <meta name="title" content="ControlZ / {{template "title" .}}">
    
            <title>ControlZ / {{template "title" .}}</title>
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/run.bash

    # Go build system (x/build) and cmd/dist for the purpose of longtest builders,
    # and will be removed if it stops being needed. See go.dev/issue/12508.
    #
    # GO_TEST_TIMEOUT_SCALE: a non-negative integer factor to scale test timeout by.
    # Defaults to 1.
    
    set -e
    
    if [ ! -f ../bin/go ]; then
    	echo 'run.bash must be run from $GOROOT/src after installing cmd/go' 1>&2
    	exit 1
    fi
    
    export GOENV=off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio.go

    		shapes = append(shapes, helper.FunctionShapePoint{
    			Utilization: int64(point.Utilization),
    			// MaxCustomPriorityScore may diverge from the max score used in the scheduler and defined by MaxNodeScore,
    			// therefore we need to scale the score returned by requested to capacity ratio to the score range
    			// used by the scheduler.
    			Score: int64(point.Score) * (framework.MaxNodeScore / config.MaxCustomPriorityScore),
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/quantization_info.proto

        float min = 1;
        float max = 2;
      }
    
      // Affine parameters to quantize the per axis value. The metadata of the
      // target properties should be specified as well.
      message AffineParams {
        float scale = 1;
        int32 zero_point = 2;
      }
    
      // Params to quantize the axis. Only one of the field can be used.
      message PerAxisParams {
        oneof params_oneof {
          // min/max of the ranges.
          MinMax min_max = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 03:45:04 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  5. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

           <link xmlns:xslthl="http://xslthl.sf.net" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700">
           <meta xmlns:xslthl="http://xslthl.sf.net" content="width=device-width, initial-scale=1" name="viewport">
           <link xmlns:xslthl="http://xslthl.sf.net" type="text/css" rel="stylesheet" href="https://docs.gradle.org/current/userguide/base.css">
    
        </head>
        <body>
           <h1>Incubating APIs</h1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 18 06:55:55 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/orig/view/login/index.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
    <html>
    <head profile="http://a9.com/-/spec/opensearch/1.1/">
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title><la:message key="labels.login.title" /></title>
    <link href="${fe:url('/css/admin/bootstrap.min.css')}" rel="stylesheet" type="text/css" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/login/newpassword.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
    <html>
    <head profile="http://a9.com/-/spec/opensearch/1.1/">
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title><la:message key="labels.login.title" /></title>
    <link href="${fe:url('/css/admin/bootstrap.min.css')}" rel="stylesheet" type="text/css" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/internal/testenv/exec.go

    			gracePeriod = 100 * time.Millisecond
    			if s := os.Getenv("GO_TEST_TIMEOUT_SCALE"); s != "" {
    				scale, err := strconv.Atoi(s)
    				if err != nil {
    					t.Fatalf("invalid GO_TEST_TIMEOUT_SCALE: %v", err)
    				}
    				gracePeriod *= time.Duration(scale)
    			}
    
    			// If time allows, increase the termination grace period to 5% of the
    			// test's remaining time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. cmd/veeam-sos-api.go

    //     specific system recommendations based on current support case statistics and storage performance possibilities.
    //     Vendors might change the settings based on the configuration and scale out of the solution (more storage nodes =>
    //     higher task limit).
    //
    //     <S3ConcurrentTaskLimit>
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/depthwise_conv2d_v2.mlir

      // CHECK-NEXT:      shape: [ 32, 3, 3, 3 ],
      // CHECK-NEXT:      type: UINT8,
      // CHECK-NEXT:      buffer: 3,
      // CHECK-NEXT:      name: "tfl.pseudo_qconst",
      // CHECK-NEXT:      quantization: {
      // CHECK-NEXT:        scale: [ 0.021827 ],
      // CHECK-NEXT:        zero_point: [ 151 ]
      // CHECK-NEXT:      },
      // CHECK-NEXT:      has_rank: true
      // CHECK-NEXT:    }, {
      // CHECK-NEXT:      shape: [ 32, 3, 3, 3 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 9.1K bytes
    - Viewed (0)
Back to top