Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 70 for UNIMPLEMENTED (0.71 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    }
    
    template <GTEST_10_TYPENAMES_(T), GTEST_10_TYPENAMES_(U)>
    inline bool operator!=(const GTEST_10_TUPLE_(T)& t,
                           const GTEST_10_TUPLE_(U)& u) { return !(t == u); }
    
    // 6.1.4 Pairs.
    // Unimplemented.
    
    }  // namespace tr1
    }  // namespace std
    
    #undef GTEST_0_TUPLE_
    #undef GTEST_1_TUPLE_
    #undef GTEST_2_TUPLE_
    #undef GTEST_3_TUPLE_
    #undef GTEST_4_TUPLE_
    #undef GTEST_5_TUPLE_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/server.go

    	if err != nil {
    		status, ok := grpcStatus.FromError(err)
    		if ok {
    			switch status.Code() {
    			case codes.Unimplemented:
    				log.Errorf("server does not implement the grpc health protocol (grpc.health.v1.Health): %v", err)
    			case codes.DeadlineExceeded:
    				log.Errorf("grpc request not finished within timeout: %v", err)
    			default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

        mlir::BlockArgument mlir_arg = main_fn.getArgument(idx);
        if (xla_arg.kind == XlaArgument::kResource) {
          mlir::Type element_type;
          if (xla_arg.type == DT_INVALID) {
            return errors::Unimplemented(absl::StrCat(
                "Argument ", idx,
                " is an uninitialized resource variable which is currently"
                " unsupported in the MLIR-based TPU bridge"));
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  4. src/image/png/reader.go

    func (e FormatError) Error() string { return "png: invalid format: " + string(e) }
    
    var chunkOrderError = FormatError("chunk out of order")
    
    // An UnsupportedError reports that the input uses a valid but unimplemented PNG feature.
    type UnsupportedError string
    
    func (e UnsupportedError) Error() string { return "png: unsupported feature: " + string(e) }
    
    func (d *decoder) parseIHDR(length uint32) error {
    	if length != 13 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. src/html/template/escape.go

    		return e.escapeTemplate(c, n)
    	case *parse.TextNode:
    		return e.escapeText(c, n)
    	case *parse.WithNode:
    		return e.escapeBranch(c, &n.BranchNode, "with")
    	}
    	panic("escaping " + n.String() + " is unimplemented")
    }
    
    var debugAllowActionJSTmpl = godebug.New("jstmpllitinterp")
    
    // escapeAction escapes an action template node.
    func (e *escaper) escapeAction(c context, n *parse.ActionNode) context {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  6. src/database/sql/fakedb_test.go

    	case "NOSERT":
    		// Do all the prep-work like for an INSERT but don't actually insert the row.
    		// Used for some of the concurrent tests.
    		return s.execInsert(args, false)
    	}
    	return nil, fmt.Errorf("fakedb: unimplemented statement Exec command type of %q", s.cmd)
    }
    
    func valueFromPlaceholderName(args []driver.NamedValue, name string) driver.Value {
    	for i := range args {
    		if args[i].Name == name {
    			return args[i].Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    				ctx.stderrStream = stream
    			case v1.StreamTypeResize:
    				replyChan <- struct{}{}
    				ctx.resizeStream = stream
    			default:
    				// add other stream ...
    				return nil, errors.New("unimplemented stream type")
    			}
    		case <-replyChan:
    			receivedStreams++
    			if receivedStreams == expectedStreams {
    				break WaitForStreams
    			}
    		}
    	}
    
    	if ctx.resizeStream != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/constant-fold.mlir

      // CHECK: %[[random:.*]] = "tf.RandomUniform"
      // CHECK: return %[[random]]
      func.return %1: tensor<3xf32>
    }
    
    // Ops with unimplemented attributes which couldn't be added to the TFE_Op.
    // CHECK-LABEL: func @testUnimplementedOp() -> (tensor<i32>, tensor<i32>)
    func.func @testUnimplementedOp() -> (tensor<i32>, tensor<i32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 23:22:24 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loadelf/ldelf.go

    	}
    
    	if elf.Type(elfobj.type_) != elf.ET_REL {
    		return errorf("elf but not elf relocatable object")
    	}
    
    	mach := elf.Machine(elfobj.machine)
    	switch arch.Family {
    	default:
    		return errorf("elf %s unimplemented", arch.Name)
    
    	case sys.MIPS:
    		if mach != elf.EM_MIPS || class != elf.ELFCLASS32 {
    			return errorf("elf object but not mips")
    		}
    
    	case sys.MIPS64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    		} else {
    			r1, r2, scale, ok = p.register(tok.String(), 0)
    			if !ok {
    				p.errorf("indirect through non-register %s", tok)
    			}
    			if r2 != 0 {
    				p.errorf("unimplemented two-register form")
    			}
    			a.Index = r1
    			if scale != 0 && scale != 1 && (p.arch.Family == sys.ARM64 ||
    				p.arch.Family == sys.PPC64) {
    				// Support (R1)(R2) (no scaling) and (R1)(R2*1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top