Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 213 for experts (0.15 sec)

  1. src/runtime/asm_mipsx.s

    	RET
    
    // callRet copies return values back at the end of call*. This is a
    // separate function so it can allocate stack space for the arguments
    // to reflectcallmove. It does not follow the Go ABI; it expects its
    // arguments in registers.
    TEXT callRet<>(SB), NOSPLIT, $20-0
    	MOVW	R5, 4(R29)
    	MOVW	R1, 8(R29)
    	MOVW	R3, 12(R29)
    	MOVW	R2, 16(R29)
    	MOVW    $0, 20(R29)
    	JAL	runtime·reflectcallmove(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

        if (expr->kind() != tensorflow::XlaExpression::Kind::kXlaOp &&
            expr->kind() != tensorflow::XlaExpression::Kind::kConstant) {
          return op_->emitRemark(absl::StrCat(
              "expects XlaExpression of kind kXlaOp or kConstant in compiled "
              "output index ",
              i));
        }
      }
      return success();
    }
    
    // XLA computations can only return a single value, but TF ops can return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/token_test.go

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cmd
    
    import (
    	"bytes"
    	"os"
    	"path/filepath"
    	"regexp"
    	"testing"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. src/go/build/read.go

    	r.peekByte(true)
    	if r.err == nil && !r.eof {
    		// Didn't reach EOF, so must have found a non-space byte. Remove it.
    		r.buf = r.buf[:len(r.buf)-1]
    	}
    	return r.buf, r.err
    }
    
    // readGoInfo expects a Go file as input and reads the file up to and including the import section.
    // It records what it learned in *info.
    // If info.fset is non-nil, readGoInfo parses the file and sets info.parsed, info.parseErr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *   <li>If a constructor or factory method takes a parameter whose type is interface, a dynamic
       *       proxy will be passed to the method. It's possible that the method body expects an
       *       instance method of the passed-in proxy to be of a certain value yet the proxy isn't aware
       *       of the assumption, in which case the equality check before and after serialization will
       *       fail.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/encoding/csv/reader.go

    	return r != 0 && r != '"' && r != '\r' && r != '\n' && utf8.ValidRune(r) && r != utf8.RuneError
    }
    
    // A Reader reads records from a CSV-encoded file.
    //
    // As returned by [NewReader], a Reader expects input conforming to RFC 4180.
    // The exported fields can be changed to customize the details before the
    // first call to [Reader.Read] or [Reader.ReadAll].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. src/internal/trace/oldtrace.go

    		name, _ := it.evt.strings.get(stringID(ev.Args[2]))
    		it.tasks[TaskID(ev.Args[0])] = taskState{name: name, parentID: TaskID(ev.Args[1])}
    	case oldtrace.EvUserTaskEnd:
    		mappedType = go122.EvUserTaskEnd
    		// Event.Task expects the parent and name to be smuggled in extra args
    		// and as extra strings.
    		ts, ok := it.tasks[TaskID(ev.Args[0])]
    		if ok {
    			delete(it.tasks, TaskID(ev.Args[0]))
    			mappedArgs = timedEventArgs{
    				ev.Args[0],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

                             ? nullptr
                             : saved_model_bundle->GetSession();
      if (pass_config.enable_stablehlo_conversion) {
        // `ConvertTFExecutorToStablehloFlatbuffer` expects a `std::nullopt` if the
        // `Session*` is a nullptr.
        std::optional<Session*> session_opt =
            session == nullptr ? std::nullopt : std::make_optional(session);
    
        // return to avoid adding TFL converter path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. src/net/netip/netip.go

    func (ip Addr) MarshalBinary() ([]byte, error) {
    	return ip.marshalBinaryWithTrailingBytes(0), nil
    }
    
    // UnmarshalBinary implements the [encoding.BinaryUnmarshaler] interface.
    // It expects data in the form generated by MarshalBinary.
    func (ip *Addr) UnmarshalBinary(b []byte) error {
    	n := len(b)
    	switch {
    	case n == 0:
    		*ip = Addr{}
    		return nil
    	case n == 4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. src/os/file_unix.go

    // the call to NewFile is hidden from the user. Historically in that case
    // the Fd method has returned a blocking descriptor, and we want to
    // retain that behavior because existing code expects it and depends on it.
    //
    //go:linkname net_newUnixFile net.newUnixFile
    func net_newUnixFile(fd int, name string) *File {
    	if fd < 0 {
    		panic("invalid FD")
    	}
    
    	return newFile(fd, name, kindSock, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top