Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for UNIMPLEMENTED (0.16 sec)

  1. src/crypto/tls/bogo_shim_test.go

    	args := []string{
    		"test",
    		".",
    		fmt.Sprintf("-shim-config=%s", filepath.Join(cwd, "bogo_config.json")),
    		fmt.Sprintf("-shim-path=%s", os.Args[0]),
    		"-shim-extra-flags=-bogo-mode",
    		"-allow-unimplemented",
    		"-loose-errors", // TODO(roland): this should be removed eventually
    		fmt.Sprintf("-json-output=%s", resultsFile),
    	}
    	if *bogoFilter != "" {
    		args = append(args, fmt.Sprintf("-test=%s", *bogoFilter))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.cc

              /*may_alias_resource_update=*/false, &client, &kernel, &executable);
        }
        if (compile_mode != DeviceCompileMode::kLazy ||
            status.code() != error::UNIMPLEMENTED) {
          OP_REQUIRES_OK(ctx, status);
        }
    
        if (status.code() == error::UNIMPLEMENTED) {
          LOG(WARNING) << "Compilation failed:" << status
                       << ".  Falling back to TF function call.";
    
          BroadcastOptimizationRemark(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
Back to top