Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,021 for UNSUPPORTED (0.25 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. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/RecordingObjectOutputStream.kt

        override fun reset() = unsupported("ObjectOutputStream.reset")
    
        override fun writeFields() = unsupported("ObjectOutputStream.writeFields")
    
        override fun putFields(): PutField = unsupported("ObjectOutputStream.putFields")
    
        override fun writeChars(str: String) = unsupported("ObjectOutputStream.writeChars")
    
        override fun writeBytes(str: String) = unsupported("ObjectOutputStream.writeBytes")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/componentconfigs/utils_test.go

    						Version: "v1",
    					},
    				},
    			},
    			wantError:    "unsupported apiVersion \"admissionregistration.k8s.io/v1beta1\", you may have to do manual conversion to \"admissionregistration.k8s.io/v1\" and run kubeadm again",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 13:52:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/DefaultWatchableFileSystemDetectorTest.groovy

                fs("/dev/supported", "/", "ext4"),
                unsupported
            ]
    
            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() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

                        reference(invocationDescription)
                        text(" in other task at execution time which is unsupported.")
                    } else {
                        text("invocation of ")
                        reference(invocationDescription)
                        text(" at execution time is unsupported.")
                    }
                }
                    .exception(
                        if (isExecutingOtherTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top