Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 265 for UNSUPPORTED (0.17 sec)

  1. tensorflow/c/eager/dlpack.cc

              return absl::OkStatus();
            default:
              return tensorflow::errors::InvalidArgument(
                  "Unsupported Complex bits: ", dtype.bits);
          }
          break;
        default:
          return tensorflow::errors::InvalidArgument("Unsupported Type Codes: ",
                                                     dtype.code);
      }
    }
    
    // Wraps the deleter function of DLManagedTensor to match the function signature
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

            fixture.assertStateStoredAndDiscarded {
                hasStoreFailure = false
                problem "Build file 'build.gradle': line 16: invocation of 'Task.project' at execution time is unsupported."
                problem "Task `:declared` of type `Broken`: error writing value of type 'BrokenSerializable'"
            }
    
            when:
            configurationCacheRun("declared")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                CLASS, TYPEALIAS -> tree.unsupported(node, UnsupportedLanguageFeature.TypeDeclaration)
                ARRAY_ACCESS_EXPRESSION -> tree.unsupported(node, UnsupportedLanguageFeature.Indexing)
                FUN -> tree.unsupported(node, UnsupportedLanguageFeature.FunctionDeclaration)
                ERROR_ELEMENT -> tree.parsingError(node, node)
                PREFIX_EXPRESSION -> tree.unsupported(node, UnsupportedLanguageFeature.PrefixExpression)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/crypto/tls/auth.go

    // an unsupported private key.
    func unsupportedCertificateError(cert *Certificate) error {
    	switch cert.PrivateKey.(type) {
    	case rsa.PrivateKey, ecdsa.PrivateKey:
    		return fmt.Errorf("tls: unsupported certificate: private key is %T, expected *%T",
    			cert.PrivateKey, cert.PrivateKey)
    	case *ed25519.PrivateKey:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

          }
        }
    
        override fun iterator() = error("unsupported")
    
        override fun offer(e: T) = error("unsupported")
    
        override fun peek(): T = error("unsupported")
    
        override fun offer(
          element: T,
          timeout: Long,
          unit: TimeUnit,
        ) = error("unsupported")
    
        override fun take() = error("unsupported")
    
        override fun remainingCapacity() = error("unsupported")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            !vfsHasSnapshotsAt(oldestRegisteredWatchableHierarchy)
            vfsHasSnapshotsAt(newestRegisteredWatchableHierarchy)
        }
    
        def "does not start watching unsupported file system for default watch mode"() {
            def unsupportedFileSystemMountPoint = file("unsupported").createDir()
            def unwatchableContent = unsupportedFileSystemMountPoint.file("file.txt").createFile()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

            then:
            1 * watcherRegistry.registerWatchableHierarchy(newWatchableHierarchy, _)
        }
    
        def "detects unsupported file systems on default watch mode"() {
            def unsupportedFileSystems = [new File("unsupported")]
    
            when:
            watchingVirtualFileSystem.afterBuildStarted(WatchMode.DEFAULT, VfsLogging.NORMAL, WatchLogging.NORMAL, buildOperationRunner)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/BaseBuildScanPluginCheckInFixture.groovy

            assert output.contains("${propertyPrefix}.serviceFactoryCreate.config.autoApplied = $autoApplied")
        }
    
        void assertUnsupportedMessage(String output, String unsupported) {
            assert output.contains("${propertyPrefix}.checkIn.unsupported.reasonMessage = $unsupported")
        }
    
        void assertEndOfBuildWithFailure(String output, @Nullable String failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/rsa.go

    	}
    	if padding == C.GO_RSA_PKCS1_OAEP_PADDING {
    		md := hashToMD(h)
    		if md == nil {
    			return pkey, ctx, errors.New("crypto/rsa: unsupported hash function")
    		}
    		mgfMD := hashToMD(mgfHash)
    		if mgfMD == nil {
    			return pkey, ctx, errors.New("crypto/rsa: unsupported hash function")
    		}
    		if C._goboringcrypto_EVP_PKEY_CTX_set_rsa_oaep_md(ctx, md) == 0 {
    			return pkey, ctx, fail("EVP_PKEY_set_rsa_oaep_md")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

                assertContainsVersioned(AsmConstants.MAX_SUPPORTED_JAVA_VERSION, "Foo.class")
            }
    
            where:
            factory << [AGENT, LEGACY]
        }
    
        def "instrumentation for #factory removes unsupported versioned directories from multi-release jar"() {
            given:
            def testFile = jar(testDir.file("thing.jar")) {
                manifest {
                    mainAttributes.putValue("Multi-Release", "true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top