Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for UNIMPLEMENTED (0.19 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/vendor/golang.org/x/sys/windows/setupapi_windows.go

    			return
    		}
    		switch dataType {
    		case DEVPROP_TYPE_STRING:
    			ret := UTF16ToString(bufToUTF16(buf))
    			runtime.KeepAlive(buf)
    			return ret, nil
    		}
    		return nil, errors.New("unimplemented property type")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_darwin_arm64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    //go:nosplit
    func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
    	if runtime.GOOS == "ios" {
    		panic("unimplemented")
    	}
    	_, _, e1 := syscall6(abi.FuncPCABI0(libc_ptrace_trampoline), uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_darwin_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    //go:nosplit
    func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
    	if runtime.GOOS == "ios" {
    		panic("unimplemented")
    	}
    	_, _, e1 := syscall6(abi.FuncPCABI0(libc_ptrace_trampoline), uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top