Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for sanity (0.15 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

      // Test we can retrieve function OpDef from graph
      TF_Buffer* buffer = TF_NewBuffer();
      TF_GraphGetOpDef(host_graph_, func_name_, buffer, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
      // Sanity check returned OpDef
      string data(static_cast<const char*>(buffer->data), buffer->length);
      OpDef op_def;
      op_def.ParseFromString(data);
      EXPECT_EQ(op_def.name(), func_name_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

        SortedMap<String, Integer> map = sortedNotNavigable(ImmutableSortedMap.of("a", 4, "b", 9));
        SortedMap<String, Double> transformed = transformValues(map, SQRT_FUNCTION);
    
        /*
         * We'd like to sanity check that we didn't get a NavigableMap out, but we
         * can't easily do so while maintaining GWT compatibility.
         */
        assertEquals(ImmutableSortedMap.of("a", 2.0, "b", 3.0), transformed);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    	die := new(dwarf.DWDie)
    	die.Abbrev = abbrev
    	die.Link = parent.Child
    	parent.Child = die
    
    	newattr(die, dwarf.DW_AT_name, dwarf.DW_CLS_STRING, int64(len(name)), name)
    
    	// Sanity check: all DIEs created in the linker should be named.
    	if name == "" {
    		panic("nameless DWARF DIE")
    	}
    
    	var st sym.SymKind
    	switch abbrev {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server_test.go

    	for _, ws := range fw.serverUnderTest.restfulCont.RegisteredWebServices() {
    		for _, r := range ws.Routes() {
    			expectedCases[r.Method+":"+r.Path] = false
    		}
    	}
    
    	// This is a sanity check that the Handle->HandleWithFilter() delegation is working
    	// Ideally, these would move to registered web services and this list would get shorter
    	expectedPaths := []string{"/healthz", "/metrics", "/metrics/cadvisor"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // happens on a clone, which will be stored in `result`.
    LogicalResult HandlePartitionedCallOpCallee(
        func::FuncOp callee, PartitionedCallLiftingInfo* result) {
      // Sanity check: return of resources should be aliases of inputs. Such outputs
      // will be removed later.
      int64_t non_resource_results = 0;
      for (auto entry :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// ErrPostStartHook - failed to execute PostStartHook
    	ErrPostStartHook = errors.New("PostStartHookError")
    )
    
    // recordContainerEvent should be used by the runtime manager for all container related events.
    // it has sanity checks to ensure that we do not write events that can abuse our masters.
    // in particular, it ensures that a containerID never appears in an event message as that
    // is prone to causing a lot of distinct events that do not count well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    
    // This pattern applies when the same quantize/dequantize have been used twice
    // with the same scale. We want to remove the redundancy.
    // TODO(fengliuai): move this to the sanity check of pre-quantize pass.
    def eliminate_dq_q_pairs : Pat<
      (TFL_QuantizeOp (TFL_DequantizeOp $in), $qt),
      (replaceWithValue $in),
      [(NotFromQuantOpOrSameQuantType $in, $qt)]>;
    
    // Matching HardSwish
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    			// about the span being freed and re-used.
    			s := ha.spans[arenaPage+uint(i)*8+j]
    
    			// The state must be mSpanInUse if the specials bit is set, so
    			// sanity check that.
    			if state := s.state.get(); state != mSpanInUse {
    				print("s.state = ", state, "\n")
    				throw("non in-use span found with specials bit set")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v2.go

    				break
    			}
    		}
    
    		if requestedVersions > 0 && requestedVersions == nVersions {
    			merged = append(merged, versions[0]...)
    			break
    		}
    	}
    
    	// Sanity check. Enable if duplicates show up.
    	if false {
    		found := make(map[[16]byte]struct{})
    		for _, ver := range merged {
    			if _, ok := found[ver.header.VersionID]; ok {
    				panic("found dupe")
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top