Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,306 for Unsupported (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

       * dependency on those interfaces.
       */
      private class AlpnProvider(
        /** This peer's supported protocols. */
        private val protocols: List<String>,
      ) : InvocationHandler {
        /** Set when remote peer notifies ALPN is unsupported. */
        var unsupported: Boolean = false
    
        /** The protocol the server selected. */
        var selected: String? = null
    
        @Throws(Throwable::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/snippets/configurationCache/projectAtExecution/tests/store.out

    > Invocation of 'Task.project' by task ':someTaskType' at execution time is unsupported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 174 bytes
    - Viewed (0)
  8. src/crypto/tls/auth.go

    // an unsupported private key.
    func unsupportedCertificateError(cert *Certificate) error {
    	switch cert.PrivateKey.(type) {
    	case rsa.PrivateKey, ecdsa.PrivateKey:
    		return fmt.Errorf("tls: unsupported certificate: private key is %T, expected *%T",
    			cert.PrivateKey, cert.PrivateKey)
    	case *ed25519.PrivateKey:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

                    problem
                        .forProperty(propertyName)
                        .id("nested-type-unsupported", "Nested type unsupported", GradleCoreProblemGroup.validation().property())
                        .contextualLabel("with nested type '" + beanType.getName() + "' is not supported")
                        .documentedAt(userManual("validation_problems", "unsupported_nested_type"))
                        .severity(WARNING)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. 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)
Back to top