Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for UNIMPLEMENTED (0.39 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    type anyObject struct {
    	Value interface{}
    }
    
    func (p anyObject) GetObjectKind() schema.ObjectKind {
    	return schema.EmptyObjectKind
    }
    
    func (anyObject) DeepCopyObject() runtime.Object {
    	panic("unimplemented")
    }
    
    func (p anyObject) MarshalCBOR() ([]byte, error) {
    	return modes.Encode.Marshal(p.Value)
    }
    
    func (p *anyObject) UnmarshalCBOR(in []byte) error {
    	return modes.Decode.Unmarshal(in, &p.Value)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/gradients.cc

      // TODO(skyewm): handle (or at least detect) nested while loops
    
      // TODO(skyewm): handle NoGradient in while loop
      if (summed_grads == NoGradient()) {
        return errors::Unimplemented(
            "Missing gradient into while loop not yet implemented");
      }
    
      DCHECK(exit_node->IsExit());
      WhileContext* while_ctx = exit_node->while_ctx();
      DCHECK(while_ctx != nullptr);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

              combined_shape.dims() != component_shape.dims()) {
            PartialTensorShape first_shape;
            TF_RETURN_IF_ERROR(unwrap(tensors_[0].get())->Shape(&first_shape));
            return errors::Unimplemented(absl::StrCat(
                "Computing the shape of a ParallelTensor when the components do "
                "not all have the same rank is not supported. One tensor had "
                "shape ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_experimental.cc

    TF_Library* TF_LoadPluggableDeviceLibrary(const char* library_filename,
                                              TF_Status* status) {
    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
      status->status = tensorflow::errors::Unimplemented(
          "PluggableDevice plugin functionality is not supported on mobile");
      return nullptr;
    #else
      TF_Library* lib_handle = new TF_Library;
      static tensorflow::mutex mu(tensorflow::LINKER_INITIALIZED);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. src/database/sql/driver/driver.go

    // package should continue as if the optional interface was not
    // implemented. ErrSkip is only supported where explicitly
    // documented.
    var ErrSkip = errors.New("driver: skip fast-path; continue as if unimplemented")
    
    // ErrBadConn should be returned by a driver to signal to the [database/sql]
    // package that a driver.[Conn] is in a bad state (such as the server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Converter.java

       * @return the converted instance; <b>must not</b> be null
       * @throws UnsupportedOperationException if backward conversion is not implemented; this should be
       *     very rare. Note that if backward conversion is not only unimplemented but
       *     unimplement<i>able</i> (for example, consider a {@code Converter<Chicken, ChickenNugget>}),
       *     then this is not logically a {@code Converter} at all, and should just implement {@link
       *     Function}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Converter.java

       * @return the converted instance; <b>must not</b> be null
       * @throws UnsupportedOperationException if backward conversion is not implemented; this should be
       *     very rare. Note that if backward conversion is not only unimplemented but
       *     unimplement<i>able</i> (for example, consider a {@code Converter<Chicken, ChickenNugget>}),
       *     then this is not logically a {@code Converter} at all, and should just implement {@link
       *     Function}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/time/sleep_test.go

    	if haveHighResSleep {
    		return delay
    	}
    	t.Log("adjusting delay for low resolution sleep")
    	switch runtime.GOOS {
    	case "windows":
    		return delay - 17*Millisecond
    	default:
    		t.Fatal("adjustDelay unimplemented on " + runtime.GOOS)
    		return 0
    	}
    }
    
    func TestSleep(t *testing.T) {
    	const delay = 100 * Millisecond
    	go func() {
    		Sleep(delay / 2)
    		Interrupt()
    	}()
    	start := Now()
    	Sleep(delay)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_launch_util.cc

        TF_RETURN_IF_ERROR(stream->RecordEvent(definition_event.get()));
      }
    
      for (const XlaOutputDescription& descr : compilation_result->outputs) {
        if (descr.type == DT_VARIANT) {
          return errors::Unimplemented(
              "Support for TensorList crossing the XLA/TF boundary "
              "is not implemented");
        }
      }
    
      std::vector<TensorShape> output_tensor_shapes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    			kind:                p.kind,
    			userAgent:           p.userAgent,
    			validationDirective: p.validationDirective,
    		}
    		p.forceAllowCreate = true
    	default:
    		return nil, false, fmt.Errorf("%v: unimplemented patch type", p.patchType)
    	}
    	dedupOwnerReferencesTransformer := func(_ context.Context, obj, _ runtime.Object) (runtime.Object, error) {
    		// Dedup owner references after mutating admission happens
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top