Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for UNIMPLEMENTED (0.18 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        std::transform(inputs.begin(), inputs.end(), outputs.begin(),
                       [](auto x) { return static_cast<int32_t>(x); });
        return outputs;
      } else {
        return errors::Unimplemented("Unsupported SparseIndexVector type");
      }
    }
    
    static StatusOr<Operation*> BuildSparseConstOp(
        const tflite::TensorT& tensor, const std::vector<uint8_t>& buffer,
        OpBuilder& builder, Location loc) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    func (d *dummyStorage) Create(_ context.Context, _ string, _, _ runtime.Object, _ uint64) error {
    	return fmt.Errorf("unimplemented")
    }
    func (d *dummyStorage) Delete(_ context.Context, _ string, _ runtime.Object, _ *storage.Preconditions, _ storage.ValidateObjectFunc, _ runtime.Object) error {
    	return fmt.Errorf("unimplemented")
    }
    func (d *dummyStorage) Watch(ctx context.Context, key string, opts storage.ListOptions) (watch.Interface, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	for i := 0; i < 3; i++ {
    		runtimeConfig, err = kubeDeps.RemoteRuntimeService.RuntimeConfig(ctx)
    		if err != nil {
    			s, ok := status.FromError(err)
    			if !ok || s.Code() != codes.Unimplemented {
    				// We could introduce a backoff delay or jitter, but this is largely catching cases
    				// where the runtime is still starting up and we request too early.
    				// Give it a little more time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    					vmin = parent.NewValue0I(parent.Pos, OpConst8, parent.Func.Config.Types.Int8, min)
    					vmax = parent.NewValue0I(parent.Pos, OpConst8, parent.Func.Config.Types.Int8, max)
    
    				default:
    					panic("unimplemented")
    				}
    
    				if min < max {
    					// Record that x > min and max >= x
    					ft.update(parent, x, vmin, d, r)
    					ft.update(parent, vmax, x, d, r|eq)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    	case *syntax.Operation:
    		if x.Y == nil {
    			// unary expression
    			if x.Op == syntax.Mul {
    				// see commented out code for StarExpr above
    				// TODO(gri) needs cleanup
    				if debug {
    					panic("unimplemented")
    				}
    				return
    			}
    			// If x is a constant, the operands were constants.
    			// The operands don't need to be updated since they
    			// never get "materialized" into a typed value. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		return filename
    	}
    
    	long := filepath.Join(t.gorootTestDir, t.goFileName())
    	switch action {
    	default:
    		t.Fatalf("unimplemented action %q", action)
    		panic("unreachable")
    
    	case "asmcheck":
    		// Compile Go file and match the generated assembly
    		// against a set of regexps in comments.
    		ops := t.wantedAsmOpcodes(long)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    // ErrUnsupportedAlgorithm results from attempting to perform an operation that
    // involves algorithms that are not currently implemented.
    var ErrUnsupportedAlgorithm = errors.New("x509: cannot verify signature: algorithm unimplemented")
    
    // An InsecureAlgorithmError indicates that the [SignatureAlgorithm] used to
    // generate the signature is not secure, and the signature has been rejected.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

      EXPECT_EQ(TF_OUT_OF_RANGE,
                static_cast<TF_Code>(tensorflow::error::OUT_OF_RANGE));
      EXPECT_EQ(TF_UNIMPLEMENTED,
                static_cast<TF_Code>(tensorflow::error::UNIMPLEMENTED));
      EXPECT_EQ(TF_INTERNAL, static_cast<TF_Code>(tensorflow::error::INTERNAL));
      EXPECT_EQ(TF_UNAVAILABLE,
                static_cast<TF_Code>(tensorflow::error::UNAVAILABLE));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    		count := uintptr(sample.Value[0])
    		f(count, sample.Location, sample.Label)
    	}
    	return p
    }
    
    func cpuProfilingBroken() bool {
    	switch runtime.GOOS {
    	case "plan9":
    		// Profiling unimplemented.
    		return true
    	case "aix":
    		// See https://golang.org/issue/45170.
    		return true
    	case "ios", "dragonfly", "netbsd", "illumos", "solaris":
    		// See https://golang.org/issue/13841.
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top