Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for Unimplemented (0.23 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

                                      uint64 size) override {
        // TODO(annarev): figure out if we should support memzero/memset
        // functionality by allocating on host and then copying to device.
        return tsl::errors::Unimplemented(
            "SynchronousMemZero is not supported by pluggable device.");
      }
      absl::Status SynchronousMemcpy(DeviceMemoryBase* gpu_dst,
                                     const void* host_src, uint64 size) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

                assertThat(
                    it.value,
                    equalTo<Any>("42")
                )
            }
        }
    
        @Test
        fun `unimplemented serialization feature problems link to the Java serialization section`() {
            val exception = assertThrows(UnsupportedOperationException::class.java) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. doc/next/9-todo.md

    CL 543335 - x/exp CL that backported a change to behavior in slices package (accepted proposal https://go.dev/issue/63393) to x/exp/slices; doesn't need a Go 1.23 release note
    CL 556820 - x/tools CL implemented accepted proposal https://go.dev/issue/64548 for x/tools/go/analysis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

    class UndeclaredFileInputsIntegrationTest extends AbstractConfigurationCacheIntegrationTest implements GroovyPluginImplementation {
        @ToBeImplemented("reporting multiple consumers per input is not implemented yet")
        def "reports multiple consumers of a single file in #accessKind access"() {
            def configurationCache = newConfigurationCacheFixture()
    
            UndeclaredFileAccess access = inputRead(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. RELEASE.md

        *   (since v2.7) Run `tf.scatter_nd` and other related scatter functions,
            such as `tf.tensor_scatter_nd_update`, on CPU (with significant
            performance penalty).
        *   Add determinism-unimplemented exception-throwing to the following ops.
            When op-determinism is expected (i.e. after
            `tf.config.experimental.enable_op_determinism` has been called), an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheInjectedClasspathInstrumentationStrategy.kt

            problems.onProblem(
                PropertyProblem(
                    PropertyTrace.Gradle,
                    StructuredMessage.build { text("support for using a Java agent with TestKit builds is not yet implemented with the configuration cache.") },
                    documentationSection = DocumentationSection.NotYetImplementedTestKitJavaAgent
                )
            )
            return CachedClasspathTransformer.StandardTransform.BuildLogic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. doc/next/5-toolchain.md

    For 386 and amd64, the compiler will use information from PGO to align certain
    hot blocks in loops.  This improves performance an additional 1-1.5% at
    a cost of an additional 0.1% text and binary size.  This is currently only implemented
    on 386 and amd64 because it has not shown an improvement on other platforms.
    Hot block alignment can be disabled with `-gcflags=[<packages>=]-d=alignhot=0`
    
    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. doc/next/7-ports.md

    Go 1.23 introduces a new `GOARM64` environment variable, which specifies the minimum target version of the ARM64 architecture at compile time. Allowed values are `v8.{0-9}` and `v9.{0-5}`. This may be followed by an option specifying extensions implemented by target hardware. Valid options are `,lse` and `,crypto`.
    
    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    <!-- go.dev/issue/61476, CL 541135 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top