Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,024 for unsupportedOp (0.18 sec)

  1. src/net/file_wasip1.go

    	switch fd.net {
    	case "tcp":
    		return &TCPListener{fd: fd}
    	default:
    		panic("unsupported network for file listener: " + fd.net)
    	}
    }
    
    func newFileConn(fd *netFD) Conn {
    	switch fd.net {
    	case "tcp":
    		return &TCPConn{conn{fd: fd}}
    	case "udp":
    		return &UDPConn{conn{fd: fd}}
    	default:
    		panic("unsupported network for file connection: " + fd.net)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 23:11:39 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/completion_test.go

    			expectedError: true,
    		},
    		{
    			name:          "invalid: too many arguments",
    			args:          []string{"", ""},
    			expectedError: true,
    		},
    		{
    			name:          "invalid: unsupported shell name",
    			args:          []string{"unsupported"},
    			expectedError: true,
    		},
    	}
    
    	// test all supported shells
    	shells := GetSupportedShells()
    	if len(shells) == 0 {
    		t.Errorf(shellsError)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 06 02:59:58 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/testers/ConcurrentMapPutIfAbsentTester.java

        } catch (NullPointerException expected) {
        }
        expectUnchanged();
        expectNullKeyMissingWhenNullKeysUnsupported(
            "Should not contain null key after unsupported putIfAbsent(null, value)");
      }
    
      @MapFeature.Require(value = SUPPORTS_PUT, absent = ALLOWS_NULL_VALUES)
      public void testPutIfAbsent_nullValueUnsupported() {
        try {
          getMap().putIfAbsent(k3(), null);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/MapPutIfAbsentTester.java

          fail("putIfAbsent(null, value) should throw");
        } catch (NullPointerException expected) {
        }
        expectUnchanged();
        expectNullKeyMissingWhenNullKeysUnsupported(
            "Should not contain null key after unsupported putIfAbsent(null, value)");
      }
    
      @MapFeature.Require(value = SUPPORTS_PUT, absent = ALLOWS_NULL_VALUES)
      public void testPutIfAbsent_nullValueUnsupportedAndKeyAbsent() {
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 18:17:52 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarEncodingIntegrationTest.groovy

            failure.assertHasCause(cause)
    
            where:
            writeCharset    | readCharset     | cause
            "'UNSUPPORTED'" | "'UTF-8'"       | "Charset for manifestContentCharset 'UNSUPPORTED' is not supported by your JVM"
            "'UTF-8'"       | "'UNSUPPORTED'" | "Charset for contentCharset 'UNSUPPORTED' is not supported by your JVM"
            null            | "'UTF-8'"       | "manifestContentCharset must not be null"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. src/database/sql/driver/types_test.go

    	{DefaultParameterConverter, bs{1}, []byte{1}, ""},
    	{DefaultParameterConverter, s("a"), "a", ""},
    	{DefaultParameterConverter, t(now), nil, "unsupported type driver.t, a struct"},
    	{DefaultParameterConverter, is{1}, nil, "unsupported type driver.is, a slice of int"},
    	{DefaultParameterConverter, dec{exponent: -6}, dec{exponent: -6}, ""},
    }
    
    func TestValueConverters(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:53:24 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/AbstractInvocationHandler.java

     * Object#hashCode} and {@link Object#toString}. For example:
     *
     * <pre>
     * class Unsupported extends AbstractInvocationHandler {
     *   protected Object handleInvocation(Object proxy, Method method, Object[] args) {
     *     throw new UnsupportedOperationException();
     *   }
     * }
     *
     * CharSequence unsupported = Reflection.newProxy(CharSequence.class, new Unsupported());
     * </pre>
     *
     * @author Ben Yu
     * @since 12.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  8. releasenotes/notes/gateway-status.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:29 UTC 2023
    - 201 bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

                withProblem("Build file 'build.gradle': line 11: invocation of 'Task.project' at execution time is unsupported.")
                withProblem("Build file 'build.gradle': line 4: execution of task ':offender' caused invocation of 'Task.project' in other task at execution time which is unsupported.")
            }
        }
    
        @Issue('https://github.com/gradle/gradle/issues/22522')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/crypto/tls/alert.go

    	alertDecompressionFailure:         "decompression failure",
    	alertHandshakeFailure:             "handshake failure",
    	alertBadCertificate:               "bad certificate",
    	alertUnsupportedCertificate:       "unsupported certificate",
    	alertCertificateRevoked:           "revoked certificate",
    	alertCertificateExpired:           "expired certificate",
    	alertCertificateUnknown:           "unknown certificate",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top