Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 381 for unsupportedOp (0.25 sec)

  1. 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)
  2. 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)
  3. src/cmd/asm/internal/asm/testdata/arm64error.s

    	ADDW	R7@>2, R5, R16                                   // ERROR "unsupported shift operator"
    	ADDS	R7@>2, R5, R16                                   // ERROR "unsupported shift operator"
    	ADDSW	R7@>2, R5, R16                                   // ERROR "unsupported shift operator"
    	SUB	R7@>2, R5, R16                                   // ERROR "unsupported shift operator"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  4. 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)
  5. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarEncodingIntegrationTest.groovy

            failure.assertHasCause(cause)
    
            where:
            writeCharset    | readCharset     | cause
            "'UNSUPPORTED'" | "'UTF-8'"       | "Charset for manifestContentCharset 'UNSUPPORTED' is not supported by your JVM"
            "'UTF-8'"       | "'UNSUPPORTED'" | "Charset for contentCharset 'UNSUPPORTED' is not supported by your JVM"
            null            | "'UTF-8'"       | "manifestContentCharset must not be null"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. guava/src/com/google/common/collect/ImmutableRangeMap.java

       */
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final void remove(Range<K> range) {
        throw new UnsupportedOperationException();
      }
    
      /**
       * Guaranteed to throw an exception and leave the {@code RangeMap} unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       * @since 28.1
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. internal/s3select/unused-errors.go

    		code:       "ParseUnsupportedToken",
    		message:    "The SQL expression contains an unsupported token.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseUnsupportedLiteralsGroupBy(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseUnsupportedLiteralsGroupBy",
    		message:    "The SQL expression contains an unsupported use of GROUP BY.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableCollection.java

      /**
       * Guaranteed to throw an exception and leave the collection unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final boolean add(E e) {
        throw new UnsupportedOperationException();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top