Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for rmins (2 sec)

  1. src/cmd/internal/obj/arm64/anames.go

    	"FCVTZUSW",
    	"FDIVD",
    	"FDIVS",
    	"FLDPD",
    	"FLDPQ",
    	"FLDPS",
    	"FMADDD",
    	"FMADDS",
    	"FMAXD",
    	"FMAXNMD",
    	"FMAXNMS",
    	"FMAXS",
    	"FMIND",
    	"FMINNMD",
    	"FMINNMS",
    	"FMINS",
    	"FMOVD",
    	"FMOVQ",
    	"FMOVS",
    	"FMSUBD",
    	"FMSUBS",
    	"FMULD",
    	"FMULS",
    	"FNEGD",
    	"FNEGS",
    	"FNMADDD",
    	"FNMADDS",
    	"FNMSUBD",
    	"FNMSUBS",
    	"FNMULD",
    	"FNMULS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        return nullptr;
      }
      auto mins = tensor.quantization->min;
      auto maxs = tensor.quantization->max;
      if (mins.size() != maxs.size() || mins.empty()) return nullptr;
    
      llvm::SmallVector<llvm::APFloat, 4> min_maxs;
      min_maxs.reserve(mins.size() * 2);
      for (int i = 0, end = mins.size(); i < end; ++i) {
        llvm::APFloat min(mins[i]);
        llvm::APFloat max(maxs[i]);
        min_maxs.push_back(min);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. src/time/zoneinfo.go

    	}
    	off := hours * secondsPerHour
    	if len(s) == 0 || s[0] != ':' {
    		if neg {
    			off = -off
    		}
    		return off, s, true
    	}
    
    	var mins int
    	mins, s, ok = tzsetNum(s[1:], 0, 59)
    	if !ok {
    		return 0, "", false
    	}
    	off += mins * secondsPerMinute
    	if len(s) == 0 || s[0] != ':' {
    		if neg {
    			off = -off
    		}
    		return off, s, true
    	}
    
    	var secs int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/controller/certificates/signer/signer_test.go

    		},
    		{
    			name:              "cannot request duration less than 10 mins",
    			certTTL:           time.Hour,
    			expirationSeconds: csr.DurationToExpirationSeconds(10*time.Minute - time.Second),
    			want:              10 * time.Minute,
    		},
    		{
    			name:              "can request duration of exactly 10 mins",
    			certTTL:           time.Hour,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 15K bytes
    - Viewed (0)
  5. src/log/slog/handler_test.go

    			replace: func(_ []string, a Attr) Attr {
    				if a.Key == TimeKey {
    					return Group(TimeKey, "mins", 3, "secs", 2)
    				}
    				if a.Key == LevelKey {
    					return Attr{}
    				}
    				return a
    			},
    			wantText: `time.mins=3 time.secs=2 msg=message`,
    			wantJSON: `{"time":{"mins":3,"secs":2},"msg":"message"}`,
    		},
    		{
    			name:     "replace empty",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

          SmallVector<double, 4> mins(1, std::numeric_limits<double>::max());
          SmallVector<double, 4> maxs(1, std::numeric_limits<double>::min());
          // Computes the effective min/max values of the attribute values.
          quant::ExtractMinMaxFromAttr(attr, /*dim_size=*/1, /*slice_size=*/1,
                                       /*symmetric=*/true, mins, maxs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. pkg/controller/job/indexed_job_utils_test.go

    		t.Run(name, func(t *testing.T) {
    			pods := hollowPodsWithIndexPhase(tc.pods)
    			rm, left := appendDuplicatedIndexPodsForRemoval(nil, nil, pods, int(tc.completions))
    			rmInt := toIndexPhases(rm)
    			leftInt := toIndexPhases(left)
    			if diff := cmp.Diff(tc.wantRm, rmInt); diff != "" {
    				t.Errorf("Unexpected pods for removal (-want,+got):\n%s", diff)
    			}
    			if diff := cmp.Diff(tc.wantLeft, leftInt); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            //(SF) this is a workaround until this story is completed. I'm hardcoding setting the idle timeout to be max X mins.
            //this way we avoid potential runaway daemons that steal resources on linux and break builds on windows.
            //We might leave that in if we decide it's a good idea for an extra safety net.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/config/config.go

    		out += fmt.Sprintf("context: %s\n", b.Context)
    	}
    	out += fmt.Sprintf("istio-namespace: %s\n", b.IstioNamespace)
    	out += fmt.Sprintf("full-secrets: %v\n", b.FullSecrets)
    	out += fmt.Sprintf("timeout (mins): %v\n", math.Round(float64(int(b.CommandTimeout))/float64(time.Minute)))
    	out += fmt.Sprintf("include: %s\n", b.Include)
    	out += fmt.Sprintf("exclude: %s\n", b.Exclude)
    	if !b.StartTime.Equal(time.Time{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/riscv64.s

    	// 11.6: Single-Precision Floating-Point Computational Instructions
    	FADDS	F1, F0, F2				// 53011000
    	FSUBS	F1, F0, F2				// 53011008
    	FMULS	F1, F0, F2				// 53011010
    	FDIVS	F1, F0, F2				// 53011018
    	FMINS	F1, F0, F2				// 53011028
    	FMAXS	F1, F0, F2				// 53111028
    	FSQRTS	F0, F1					// d3000058
    
    	// 11.7: Single-Precision Floating-Point Conversion and Move Instructions
    	FCVTWS	F0, X5					// d31200c0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top