Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 137 for UNIMPLEMENTED (0.26 sec)

  1. maven-core/src/site/apt/offline-mode.apt

      repositories are "really" offline, since offline mode is more of a behavior,
      and this will lead to counter-intuitive results. A different feature may exist
      unimplemented, which is to detect when the network is down and provide better
      feedback for that case. However, when offline mode is declared, nothing
      earmarked as remote should be accessed, regardless of whether it is actually
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_executable_persistor.h

          serialized_executable.ok()) {
        serialized_entry.set_executable(std::move(*serialized_executable));
        return serialized_entry;
      } else if (serialized_executable.status().code() == error::UNIMPLEMENTED) {
        VLOG(1) << "Executable export is not implemented";
      } else {
        return serialized_executable.status();
      }
    
      TF_ASSIGN_OR_RETURN(
          auto serialized_executable,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

    class FakeDevice : public Device {
     public:
      explicit FakeDevice(const DeviceAttributes& device_attributes)
          : Device(nullptr, device_attributes) {}
    
      Status Sync() override { return errors::Unimplemented("FakeDevice::Sync()"); }
    
      Allocator* GetAllocator(AllocatorAttributes attr) override { return nullptr; }
    
      static std::unique_ptr<Device> Make(const string& name, const string& type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/types2/stdlib_test.go

    type futurePackage struct {
    	done chan struct{} // guards pkg and err
    	pkg  *Package
    	err  error
    }
    
    func (c *stdlibChecker) Import(path string) (*Package, error) {
    	panic("unimplemented: use ImportFrom")
    }
    
    func (c *stdlibChecker) ImportFrom(path, dir string, _ ImportMode) (*Package, error) {
    	if path == "unsafe" {
    		// unsafe cannot be type checked normally.
    		return Unsafe, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cri_stats_provider.go

    			// Call succeeded
    			return result, nil
    		}
    		s, ok := status.FromError(err)
    		// Legitimate failure, rather than the CRI implementation does not support ListPodSandboxStats.
    		if !ok || s.Code() != codes.Unimplemented {
    			return nil, err
    		}
    		// CRI implementation doesn't support ListPodSandboxStats, warn and fallback.
    		klog.V(5).ErrorS(err,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  8. src/go/types/stdlib_test.go

    type futurePackage struct {
    	done chan struct{} // guards pkg and err
    	pkg  *Package
    	err  error
    }
    
    func (c *stdlibChecker) Import(path string) (*Package, error) {
    	panic("unimplemented: use ImportFrom")
    }
    
    func (c *stdlibChecker) ImportFrom(path, dir string, _ ImportMode) (*Package, error) {
    	if path == "unsafe" {
    		// unsafe cannot be type checked normally.
    		return Unsafe, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/Types.java

       * Java 8. If we include the {@code getAnnotatedBounds()} method then its return type means it
       * won't compile on Java 7, while if we don't include the method then the compiler will complain
       * that an abstract method is unimplemented. So instead we use a dynamic proxy to get an
       * implementation. If the method being called on the {@code TypeVariable} instance has the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/poset_test.go

    				t.Errorf("FAILED: op%d%v passed", idx, op)
    			}
    		case Checkpoint:
    			po.Checkpoint()
    		case Undo:
    			t.Log("Undo stack", po.undo)
    			po.Undo()
    		default:
    			panic("unimplemented")
    		}
    
    		if false {
    			po.DotDump(fmt.Sprintf("op%d.dot", idx), fmt.Sprintf("Last op: %v", op))
    		}
    
    		po.CheckIntegrity()
    	}
    
    	// Check that the poset is completely empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
Back to top