Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,306 for Unsupported (0.27 sec)

  1. pkg/config/protocol/instance.go

    	// HBONE declares that the port carries HBONE traffic.
    	// This cannot be declared by Services, but is used for some internal code that uses Protocol
    	HBONE Instance = "HBONE"
    	// Unsupported - value to signify that the protocol is unsupported.
    	Unsupported Instance = "UnsupportedProtocol"
    )
    
    // Parse from string ignoring case
    func Parse(s string) Instance {
    	switch strings.ToLower(s) {
    	case "tcp":
    		return TCP
    	case "udp":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

                withProblem("Build file 'build.gradle': line 3: registration of listener on 'Gradle.addListener' is unsupported")
                withProblem("Task `:broken` of type `org.gradle.api.DefaultTask`: cannot serialize object of type 'org.gradle.api.internal.project.DefaultProject', a subtype of 'org.gradle.api.Project', as these are not supported with the configuration cache.")
                problemsWithStackTraceCount = 1
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

            }
            succeeds("t", "--configuration-cache")
    
            then:
            output.contains("present: ${applied}")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskActionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    class TaskActionIntegrationTest extends AbstractIntegrationSpec {
        @UnsupportedWithConfigurationCache(because = "tests unsupported behaviour")
        def "nags when task action uses Task.project and feature preview is enabled"() {
            settingsFile """
                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            """
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/InsecureExtendedTrustManager.kt

      ) = throw CertificateException("Unsupported operation")
    
      override fun checkClientTrusted(
        chain: Array<out X509Certificate>,
        authType: String?,
      ) = throw CertificateException("Unsupported operation")
    
      override fun checkClientTrusted(
        chain: Array<out X509Certificate>,
        authType: String,
        engine: SSLEngine?,
      ) = throw CertificateException("Unsupported operation")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. pkg/config/protocol/instance_test.go

    		{"REDIS", protocol.Redis},
    		{"Mysql", protocol.MySQL},
    		{"mysql", protocol.MySQL},
    		{"MYSQL", protocol.MySQL},
    		{"MySQL", protocol.MySQL},
    		{"", protocol.Unsupported},
    		{"SMTP", protocol.Unsupported},
    		{"HBONE", protocol.Unsupported},
    	}
    
    	for _, testPair := range testPairs {
    		testName := testPair.name
    		if testName == "" {
    			testName = "[empty]"
    		}
    		t.Run(testName, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/cgo_linux_test.go

    package cgotest
    
    import (
    	"runtime"
    	"testing"
    )
    
    func TestSetgid(t *testing.T) {
    	if runtime.GOOS == "android" {
    		t.Skip("unsupported on Android")
    	}
    	testSetgid(t)
    }
    
    func TestSetgidStress(t *testing.T) {
    	if runtime.GOOS == "android" {
    		t.Skip("unsupported on Android")
    	}
    	testSetgidStress(t)
    }
    
    func Test1435(t *testing.T) { test1435(t) }
    func Test6997(t *testing.T) { test6997(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:01 UTC 2024
    - 662 bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                CLASS, TYPEALIAS -> tree.unsupported(node, UnsupportedLanguageFeature.TypeDeclaration)
                ARRAY_ACCESS_EXPRESSION -> tree.unsupported(node, UnsupportedLanguageFeature.Indexing)
                FUN -> tree.unsupported(node, UnsupportedLanguageFeature.FunctionDeclaration)
                ERROR_ELEMENT -> tree.parsingError(node, node)
                PREFIX_EXPRESSION -> tree.unsupported(node, UnsupportedLanguageFeature.PrefixExpression)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. pkg/util/procfs/procfs_unsupported.go

    func (pfs *ProcFS) GetFullContainerName(pid int) (string, error) {
    	return "", fmt.Errorf("GetFullContainerName is unsupported in this build")
    }
    
    // Find process(es) using a regular expression and send a specified
    // signal to each process
    func PKill(name string, sig syscall.Signal) error {
    	return fmt.Errorf("PKill is unsupported in this build")
    }
    
    // Find process(es) with a specified name (exact match)
    // and return their pid(s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. plugin/pkg/admission/alwayspullimages/admission_test.go

    	expectedError := `[` +
    		`pods "123" is forbidden: spec.initContainers[0].imagePullPolicy: Unsupported value: "": supported values: "Always", ` +
    		`pods "123" is forbidden: spec.initContainers[1].imagePullPolicy: Unsupported value: "Never": supported values: "Always", ` +
    		`pods "123" is forbidden: spec.initContainers[2].imagePullPolicy: Unsupported value: "IfNotPresent": supported values: "Always", ` +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 30 22:59:57 UTC 2020
    - 8.5K bytes
    - Viewed (0)
Back to top