Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for reinterprets (0.38 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. src/math/big/int.go

    	}
    	// entire content must have been consumed
    	if _, err := r.ReadByte(); err != io.EOF {
    		return nil, false
    	}
    	return z, true // err == io.EOF => scan consumed all content of r
    }
    
    // SetBytes interprets buf as the bytes of a big-endian unsigned
    // integer, sets z to that value, and returns z.
    func (z *Int) SetBytes(buf []byte) *Int {
    	z.abs = z.abs.setBytes(buf)
    	z.neg = false
    	return z
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/dist/test.go

    	cmd.Stderr = os.Stderr
    	if vflag > 1 {
    		errprintf("%s\n", strings.Join(cmd.Args, " "))
    	}
    	return cmd
    }
    
    // flattenCmdline flattens a mixture of string and []string as single list
    // and then interprets it as a command line: first element is binary, then args.
    func flattenCmdline(cmdline []interface{}) (bin string, args []string) {
    	var list []string
    	for _, x := range cmdline {
    		switch x := x.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	}
    	if quote != 0 {
    		err = errors.New("unclosed quote")
    	} else if escaped {
    		err = errors.New("unfinished escaping")
    	}
    	return args, err
    }
    
    // matchAuto interprets text as either a +build or //go:build expression (whichever works),
    // reporting whether the expression matches the build context.
    //
    // matchAuto is only used for testing of tag evaluation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    // versions that have already been resolved. If there is only one (unique)
    // remaining candidate, disambiguate returns that candidate, along with
    // an indication of whether that result interprets cs.path as a package
    //
    // Note: we're only doing very simple disambiguation here. The goal is to
    // reproduce the user's intent, not to find a solution that a human couldn't.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.23.md

      Kubernetes will keep allowing leading zeros on IPv4 address to not break the compatibility.
      IMPORTANT: Kubernetes interprets leading zeros on IPv4 addresses as decimal, users must not rely on parser alignment to not being impacted by the associated security advisory:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	// of response headers are allowed. Unlike the http2 spec, zero here
    	// means to use a default limit (currently 10MB). If you actually
    	// want to advertise an unlimited value to the peer, Transport
    	// interprets the highest possible value here (0xffffffff or 1<<32-1)
    	// to mean no limit.
    	MaxHeaderListSize uint32
    
    	// MaxReadFrameSize is the http2 SETTINGS_MAX_FRAME_SIZE to send in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top