Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,306 for Unsupported (0.21 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Unsupported.kt

            null
        }
    )
    
    
    inline fun <reified T : Any> unsupported(
        description: String,
        documentationSection: DocumentationSection = DocumentationSection.RequirementsDisallowedTypes
    ) = unsupported<T>(documentationSection) {
        text(description)
    }
    
    
    inline fun <reified T : Any> unsupported(
        documentationSection: DocumentationSection = DocumentationSection.RequirementsDisallowedTypes,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/unsupported-format.toml

    Louis Jacomet <******@****.***> 1615370565 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 38 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/reducer/unsupported-op-test.sh

    A. Unique TensorFlower <******@****.***> 1624959463 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 29 09:41:12 UTC 2021
    - 920 bytes
    - Viewed (0)
  4. pkg/volume/util/hostutil/hostutil_unsupported.go

    // unsupported platforms
    type HostUtil struct{}
    
    // NewHostUtil returns a struct that implements the HostUtils interface on
    // unsupported platforms
    func NewHostUtil() *HostUtil {
    	return &HostUtil{}
    }
    
    var errUnsupported = errors.New("volume/util/hostutil on this platform is not supported")
    
    // DeviceOpened always returns an error on unsupported platforms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 10:17:38 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

        bind(unsupported<Gradle>())
        bind(unsupported<Settings>())
        bind(unsupported<Project>())
        bind(unsupported<IsolatedProject>())
        bind(unsupported<TaskContainer>())
        bind(unsupported<TaskDependency>())
        bind(unsupported<SourceSetContainer>())
        bind(unsupported<SourceSet>())
    
        // Dependency Resolution Types
        bind(unsupported<ConfigurationContainer>())
        bind(unsupported<ResolutionStrategy>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/DefaultWatchableFileSystemDetectorTest.groovy

            expect:
            detect() == [unsupported.mountPoint]
    
            where:
            description   | unsupported
            "unsupported" | fs("/dev/unsupported", "/mnt/unsupported", "UNSUPPORTED")
            "remote"      | fs("/dev/remote", "/mnt/unsupported", "ext4", true)
        }
    
        private List<FileSystemInfo> detect() {
            detector.detectUnsupportedFileSystems()
                .collect(Collectors.toList())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. 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)
  8. pkg/config/security/security_test.go

    		},
    		{
    			name:      "unsupported path template - matchAnyTemplate with additional chars",
    			values:    []string{"/foo/{**}buzz/bar"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - empty curly braces",
    			values:    []string{"/{*}/foo/{}/bar"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - matchOneTemplate with `*`",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/fallback_query_param_verifier_test.go

    			expectedSupports: true,
    		},
    		"Field validation unsupported for unknown GVK in primary verifier": {
    			crds: []schema.GroupKind{},
    			gvk: schema.GroupVersionKind{
    				Group:   "bad",
    				Version: "v1",
    				Kind:    "Uknown",
    			},
    			queryParam:       QueryParamFieldValidation,
    			expectedSupports: false,
    		},
    		"Unknown query param unsupported (for all GVK's) in primary verifier": {
    			crds: []schema.GroupKind{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 18:30:16 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top