Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 620 for UNSUPPORTED (0.17 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

        try {
          val provider = Proxy.getInvocationHandler(getMethod.invoke(null, sslSocket)) as AlpnProvider
          if (!provider.unsupported && provider.selected == null) {
            log("ALPN callback dropped: HTTP/2 is disabled. " + "Is alpn-boot on the boot class path?")
            return null
          }
          return if (provider.unsupported) null else provider.selected
        } catch (e: InvocationTargetException) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/volume_host.go

    	return func(_, _ string) (*v1.Secret, error) {
    		return nil, fmt.Errorf("GetSecret unsupported in PersistentVolumeController")
    	}
    }
    
    func (ctrl *PersistentVolumeController) GetConfigMapFunc() func(namespace, name string) (*v1.ConfigMap, error) {
    	return func(_, _ string) (*v1.ConfigMap, error) {
    		return nil, fmt.Errorf("GetConfigMap unsupported in PersistentVolumeController")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. 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)
  4. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

            """
    
            when:
            succeeds "t"
    
            then:
            output.contains("present: ${applied}")
    
            where:
            applied << [true, false]
        }
    
        def "can convey unsupported to plugin that supports it"() {
            given:
            applyPlugin()
    
            when:
            succeeds "t", "-D${UNSUPPORTED_TOGGLE}=true"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/IsolatedActionCodecsFactory.kt

        /**
         * Value sources and build services are currently unsupported but could eventually
         * be captured as part of the serialized action [environment][org.gradle.internal.cc.impl.isolation.SerializedIsolatedActionGraph.environment]
         **/
        private
        fun BindingsBuilder.unsupportedProviderTypes() {
            bind(unsupported<ValueSourceProvider<*, *>>())
            bind(unsupported<BuildServiceProvider<*, *>>())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pkg/config/schema/codegen/templates/crdclient.go.tmpl

    			ObjectMeta: objMeta,
    			Spec:       *(cfg.Spec.(*{{ .ClientImport }}.{{.SpecType}})),
    		}, metav1.CreateOptions{})
    	{{- end }}
    {{- end }}
    	default:
    		return nil, fmt.Errorf("unsupported type: %v", cfg.GroupVersionKind)
    	}
    }
    
    func update(c kube.Client, cfg config.Config, objMeta metav1.ObjectMeta) (metav1.Object, error) {
    	switch cfg.GroupVersionKind {
    {{- range .Entries }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

        }
    
        boolean testClassExists(String testClass) {
            throw new UnsupportedOperationException("Unsupported. Implement if you need it.")
        }
    
        boolean testClassDoesNotExist(String testClass) {
            throw new UnsupportedOperationException("Unsupported. Implement if you need it.")
        }
    
        TestClassExecutionResult testClass(String testClass) {
            parseResults()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

                validationContext.visitPropertyProblem(problem ->
                    problem
                        .forProperty(propertyName)
                        .id("nested-type-unsupported", "Nested type unsupported", GradleCoreProblemGroup.validation().property())
                        .contextualLabel("with nested type '" + beanType.getName() + "' is not supported")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

          }
        }
    
        override fun iterator() = error("unsupported")
    
        override fun offer(e: T) = error("unsupported")
    
        override fun peek(): T = error("unsupported")
    
        override fun offer(
          element: T,
          timeout: Long,
          unit: TimeUnit,
        ) = error("unsupported")
    
        override fun take() = error("unsupported")
    
        override fun remainingCapacity() = error("unsupported")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. pkg/volume/util/atomic_writer_unsupported.go

    import (
    	"runtime"
    
    	"k8s.io/klog/v2"
    )
    
    // chown changes the numeric uid and gid of the named file.
    // This is a no-op on unsupported platforms.
    func (w *AtomicWriter) chown(name string, uid, _ /* gid */ int) error {
    	klog.Warningf("%s: skipping change of Linux owner %v for file %s; unsupported on %s", w.logContext, uid, name, runtime.GOOS)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 04:44:51 UTC 2024
    - 980 bytes
    - Viewed (0)
Back to top