Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 120 for UNIMPLEMENTED (0.38 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. src/image/jpeg/reader.go

    type FormatError string
    
    func (e FormatError) Error() string { return "invalid JPEG format: " + string(e) }
    
    // An UnsupportedError reports that the input uses a valid but unimplemented JPEG feature.
    type UnsupportedError string
    
    func (e UnsupportedError) Error() string { return "unsupported JPEG feature: " + string(e) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_experimental.h

      void (*delete_device)(void* device_info);
    
      // Implements TFE_CreatePackedTensorHandle when one of `handles` is on this
      // custom device.
      //
      // Many devices will want to simply return an "unimplemented" status
      // here. This is the default behavior if `pack` is null when passed to
      // TFE_RegisterCustomDevice.
      TFE_TensorHandle* (*pack)(TFE_Context* context, TFE_TensorHandle** handles,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top