Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,021 for UNSUPPORTED (0.11 sec)

  1. errors.go

    	// ErrSubQueryRequired sub query required
    	ErrSubQueryRequired = errors.New("sub query required")
    	// ErrInvalidData unsupported data
    	ErrInvalidData = errors.New("unsupported data")
    	// ErrUnsupportedDriver unsupported driver
    	ErrUnsupportedDriver = errors.New("unsupported driver")
    	// ErrRegistered registered
    	ErrRegistered = errors.New("registered")
    	// ErrInvalidField invalid field
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 02:53:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	MOVB	$1, X5				// ERROR "unsupported constant load"
    	MOVH	$1, X5				// ERROR "unsupported constant load"
    	MOVW	$1, X5				// ERROR "unsupported constant load"
    	MOVF	$1, X5				// ERROR "unsupported constant load"
    	MOVBU	X5, (X6)			// ERROR "unsupported unsigned store"
    	MOVHU	X5, (X6)			// ERROR "unsupported unsigned store"
    	MOVWU	X5, (X6)			// ERROR "unsupported unsigned store"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/asm/internal/asm/testdata/amd64error.s

    	VADDPD.RN_SAE Y3, Y2, K1, Y1     // ERROR "unsupported rounding"
    	// Unsupported SAE.
    	VMAXPD.SAE (AX), Z2, K1, Z1      // ERROR "illegal SAE with memory argument"
    	VADDPD.SAE X3, X2, K1, X1        // ERROR "unsupported SAE"
    	// Unsupported zeroing.
    	VFPCLASSPDX.Z $0, (AX), K2, K1   // ERROR "unsupported zeroing"
    	VFPCLASSPDY.Z $0, (AX), K2, K1   // ERROR "unsupported zeroing"
    	// Unsupported broadcast.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginCollection.java

        /**
         * Unsupported.
         * @deprecated plugins cannot be removed.
         */
        @Override
        @Deprecated
        boolean remove(Object o);
    
        /**
         * Unsupported.
         * @deprecated plugins cannot be removed.
         */
        @Override
        @Deprecated
        boolean removeAll(Collection<?> c);
    
        /**
         * Unsupported.
         * @deprecated plugins cannot be removed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/env_unset.txt

    env GOEXPERIMENT=
    
    ! go env
    stderr '^go(\.exe)?: unknown GOEXPERIMENT badexp$'
    
    go env -u GOEXPERIMENT
    
    ! go env
    stderr '^go: unsupported GOOS/GOARCH pair bados/badarch$'
    
    ! go env -u GOOS
    stderr '^go: unsupported GOOS/GOARCH pair \w+/badarch$'
    
    ! go env -u GOARCH
    stderr '^go: unsupported GOOS/GOARCH pair bados/\w+$'
    
    go env -u GOOS GOARCH
    
    go env
    
    -- badenv --
    GOOS=bados
    GOARCH=badarch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 553 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/UnsupportedOlderVersionConnection.java

            throw unsupported();
        }
    
        @Override
        public void runTests(TestExecutionRequest testExecutionRequest, ConsumerOperationParameters operationParameters) {
            throw unsupported();
        }
    
        @Override
        public void notifyDaemonsAboutChangedPaths(List<String> changedPaths, ConsumerOperationParameters operationParameters) {
            throw unsupported();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. 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)
  10. pkg/volume/util/device_util_unsupported.go

    package util
    
    // FindMultipathDeviceForDevice unsupported returns ""
    func (handler *deviceHandler) FindMultipathDeviceForDevice(device string) string {
    	return ""
    }
    
    // FindSlaveDevicesOnMultipath unsupported returns ""
    func (handler *deviceHandler) FindSlaveDevicesOnMultipath(disk string) []string {
    	out := []string{}
    	return out
    }
    
    // GetISCSIPortalHostMapForTarget unsupported returns nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top