Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for reinterprets (0.5 sec)

  1. src/reflect/value.go

    	}
    
    	if i < 0 || j < i || j > cap {
    		panic("reflect.Value.Slice: slice index out of bounds")
    	}
    
    	// Declare slice so that gc can see the base pointer in it.
    	var x []unsafe.Pointer
    
    	// Reinterpret as *unsafeheader.Slice to edit.
    	s := (*unsafeheader.Slice)(unsafe.Pointer(&x))
    	s.Len = j - i
    	s.Cap = cap - i
    	if cap-i > 0 {
    		s.Data = arrayAt(base, i, typ.Elem.Size(), "i < cap")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			newObj:                 st.MakeNode().Obj(),
    			expected:               queueAfterBackoff,
    			expectedExecutionCount: 0,
    			queueingHintMap:        QueueingHintMapPerProfile{},
    		},
    		{
    			name: "interprets Queue from the Pending plugin as queueImmediately",
    			podInfo: &framework.QueuedPodInfo{
    				UnschedulablePlugins: sets.New("fooPlugin1", "fooPlugin3"),
    				PendingPlugins:       sets.New("fooPlugin2"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

          )
        assertThat(conditionalRequest.headers["If-Modified-Since"])
          .isEqualTo(lastModifiedDate)
      }
    
      @Test
      fun maxAgeInThePastWithDateHeaderButNoLastModifiedHeader() {
        // Chrome interprets max-age relative to the local clock. Both our cache
        // and Firefox both use the earlier of the local and server's clock.
        assertNotCached(
          MockResponse.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      if (!context->RankKnown(handle)) {
        return mlir::UnrankedTensorType::get(element_type);
      }
    
      // Sentinel for an unknown dimension size. getTensorType interprets any
      // negative value as an unknown dimension.
      // TODO(jmolloy): Ideally this shouldn't be a local sentinel.
      const int64_t kUnknownDim = -1;
    
      absl::InlinedVector<int64_t, 4> dimensions;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top