Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 607 for unsupportedOp (0.28 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withProblem("Build file 'build.gradle': line 510: invocation of 'Task.project' at execution time is unsupported.")
                withProblem("Build file 'build.gradle': line 515: invocation of 'Task.project' at execution time is unsupported.")
                withProblem("Build file 'build.gradle': line 520: invocation of 'Task.project' at execution time is unsupported.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/enterprise/core/GradleEnterprisePluginManager.java

        // Indicates plugin checked in, but was unsupported
        private boolean unsupported;
    
        @Nullable
        public GradleEnterprisePluginAdapter getAdapter() {
            return adapter;
        }
    
        public void registerAdapter(GradleEnterprisePluginAdapter adapter) {
            if (unsupported) {
                throw new IllegalStateException("plugin already noted as unsupported");
            }
            this.adapter = adapter;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/ObjectInputStreamAdapter.kt

        override fun readLine(): String = unsupported("ObjectInputStream.readLine")
    
        override fun readFully(buf: ByteArray) = unsupported("ObjectInputStream.readFully")
    
        override fun readFully(buf: ByteArray, off: Int, len: Int) = unsupported("ObjectInputStream.readFully")
    
        override fun readUnshared(): Any = unsupported("ObjectInputStream.readUnshared")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemsServiceIntegTest.groovy

                withProblemsWithStackTraceCount(1)
            }
    
            and:
            verifyAll(receivedProblem(0)) {
                fqid == REGISTRATION_UNSUPPORTED
                contextualLabel == "registration of listener on 'Gradle.buildFinished' is unsupported"
                definition.severity == Severity.WARNING
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:configuration-cache-registration-of-listener-on-gradle-buildfinished-is-unsupported' : 'registration of listener on \'Gradle.buildFinished\' is unsupported',
            'validation:configuration-cache-invocation-of-task-project-at-execution-time-is-unsupported' : 'invocation of \'Task.project\' at execution time is unsupported.',
            'task-selection:ambiguous-matches' : 'Ambiguous matches',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/LegacyGradleEnterprisePluginCheckInService.java

            private final Requestedness requestedness;
            private final String unsupported;
            private final Attributes attributes;
    
            public Config(Requestedness requestedness, Attributes attributes, String unsupported) {
                this.requestedness = requestedness;
                this.unsupported = unsupported;
                this.attributes = attributes;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskActionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    class TaskActionIntegrationTest extends AbstractIntegrationSpec {
        @UnsupportedWithConfigurationCache(because = "tests unsupported behaviour")
        def "nags when task action uses Task.project and feature preview is enabled"() {
            settingsFile """
                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            """
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/cgo/internal/test/cgo_linux_test.go

    package cgotest
    
    import (
    	"runtime"
    	"testing"
    )
    
    func TestSetgid(t *testing.T) {
    	if runtime.GOOS == "android" {
    		t.Skip("unsupported on Android")
    	}
    	testSetgid(t)
    }
    
    func TestSetgidStress(t *testing.T) {
    	if runtime.GOOS == "android" {
    		t.Skip("unsupported on Android")
    	}
    	testSetgidStress(t)
    }
    
    func Test1435(t *testing.T) { test1435(t) }
    func Test6997(t *testing.T) { test6997(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:01 UTC 2024
    - 662 bytes
    - Viewed (0)
Back to top