Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for UNIMPLEMENTED (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/runtime/sys_darwin_amd64.s

    	MOVL	16(DI), DX	// arg 3 advice
    	MOVQ	0(DI), DI	// arg 1 addr
    	CALL	libc_madvise(SB)
    	// ignore failure - maybe pages are locked
    	RET
    
    TEXT runtime·mlock_trampoline(SB), NOSPLIT, $0
    	UNDEF // unimplemented
    
    GLOBL timebase<>(SB),NOPTR,$(machTimebaseInfo__size)
    
    TEXT runtime·nanotime_trampoline(SB),NOSPLIT,$0
    	MOVQ	DI, BX
    	CALL	libc_mach_absolute_time(SB)
    	MOVQ	AX, 0(BX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tensorflow/compiler/aot/codegen.cc

          *str = "tensorflow::uint64";
          break;
        case xla::F32:
          *str = "float";
          break;
        case xla::F64:
          *str = "double";
          break;
        default:
          return errors::Unimplemented("XLA type ", xla::PrimitiveType_Name(type),
                                       " has no equivalent in C++");
      }
      return absl::OkStatus();
    }
    
    // Returns the sum of the size of each buffer in `buffer_infos`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    }
    
    template <GTEST_10_TYPENAMES_(T), GTEST_10_TYPENAMES_(U)>
    inline bool operator!=(const GTEST_10_TUPLE_(T)& t,
                           const GTEST_10_TUPLE_(U)& u) { return !(t == u); }
    
    // 6.1.4 Pairs.
    // Unimplemented.
    
    }  // namespace tr1
    }  // namespace std
    
    #undef GTEST_0_TUPLE_
    #undef GTEST_1_TUPLE_
    #undef GTEST_2_TUPLE_
    #undef GTEST_3_TUPLE_
    #undef GTEST_4_TUPLE_
    #undef GTEST_5_TUPLE_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. src/image/jpeg/reader.go

    type FormatError string
    
    func (e FormatError) Error() string { return "invalid JPEG format: " + string(e) }
    
    // An UnsupportedError reports that the input uses a valid but unimplemented JPEG feature.
    type UnsupportedError string
    
    func (e UnsupportedError) Error() string { return "unsupported JPEG feature: " + string(e) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_experimental.h

      void (*delete_device)(void* device_info);
    
      // Implements TFE_CreatePackedTensorHandle when one of `handles` is on this
      // custom device.
      //
      // Many devices will want to simply return an "unimplemented" status
      // here. This is the default behavior if `pack` is null when passed to
      // TFE_RegisterCustomDevice.
      TFE_TensorHandle* (*pack)(TFE_Context* context, TFE_TensorHandle** handles,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top