Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for unsupportedOp (0.17 sec)

  1. src/crypto/tls/common.go

    	// the static RSA key exchange, and unsupported otherwise. The logic for
    	// supporting static RSA is completely disjoint from the logic for
    	// supporting signed key exchanges, so we just check it as a fallback.
    	supportsRSAFallback := func(unsupported error) error {
    		// TLS 1.3 dropped support for the static RSA key exchange.
    		if vers == VersionTLS13 {
    			return unsupported
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                return;
            }
    
            if (!ComponentUtil.getFessConfig().isWebApiPopularWord()) {
                writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, escapeJsonKeyValue(MESSAGE_FIELD, "Unsupported operation."));
                return;
            }
    
            final String seed = request.getParameter("seed");
            String[] tags = SearchRequestParams.getParamValueArray(request, "label");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Sets.java

          return set;
        }
    
        /**
         * Guaranteed to throw an exception and leave the collection unmodified.
         *
         * @throws UnsupportedOperationException always
         * @deprecated Unsupported operation.
         */
        @CanIgnoreReturnValue
        @Deprecated
        @Override
        @DoNotCall("Always throws UnsupportedOperationException")
        public final boolean add(@ParametricNullness E e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      // CHECK: tf_device.return %[[IF]]
      // CHECK: "tf.AssignVariableOp"(%[[VH0]], %[[CLUSTER]])
      func.return
    }
    
    
    // Make sure unsupported resources are handled correctly. If a resource is used
    // in an unsupported op, resource op lifting should skip lifting that resource.
    // So for the below test, the IR should stay unchanged.
    // CHECK-LABEL: func @test_unsupported_resource_op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

          return set;
        }
    
        /**
         * Guaranteed to throw an exception and leave the collection unmodified.
         *
         * @throws UnsupportedOperationException always
         * @deprecated Unsupported operation.
         */
        @CanIgnoreReturnValue
        @Deprecated
        @Override
        @DoNotCall("Always throws UnsupportedOperationException")
        public final boolean add(@ParametricNullness E e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    		case k8s.HTTPRouteFilterURLRewrite:
    			vs.Rewrite = createRewriteFilter(filter.URLRewrite)
    		default:
    			return nil, &ConfigError{
    				Reason:  InvalidFilter,
    				Message: fmt.Sprintf("unsupported filter type %q", filter.Type),
    			}
    		}
    	}
    
    	if r.Timeouts != nil {
    		if r.Timeouts.Request != nil {
    			request, _ := time.ParseDuration(string(*r.Timeouts.Request))
    			if request != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. .bazelrc

    # The old gcc linux build options are preserved in the unsupported_*_linux
    # configs. If your project fails to build with Clang, you can use these
    # unsupported flags to replace the release flags in your build command.
    # However, please note that the old toolchain is no longer officially supported
    # by TensorFlow and the unsupported configs will be removed soon b/299962977. We
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    		testClientHelloFailure(t, config, &clientHelloMsg{
    			vers:   v,
    			random: make([]byte, 32),
    		}, "unsupported versions")
    	}
    	testClientHelloFailure(t, config, &clientHelloMsg{
    		vers:              VersionTLS12,
    		supportedVersions: badProtocolVersions,
    		random:            make([]byte, 32),
    	}, "unsupported versions")
    }
    
    func TestNoSuiteOverlap(t *testing.T) {
    	clientHello := &clientHelloMsg{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    					if sym, firstUse := genpltstub(ctxt, ldr, r, i, s); firstUse {
    						stubs = append(stubs, sym)
    					}
    
    				case sym.SXREF:
    					// TODO: This is not supported yet.
    					ldr.Errorf(s, "Unsupported NOTOC external reference call into %s", ldr.SymName(r.Sym()))
    
    				case sym.STEXT:
    					targ := r.Sym()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  10. src/encoding/xml/marshal_test.go

    		Value: make(chan bool),
    		Err:   "xml: unsupported type: chan bool",
    		Kind:  reflect.Chan,
    	},
    	{
    		Value: map[string]string{
    			"question": "What do you get when you multiply six by nine?",
    			"answer":   "42",
    		},
    		Err:  "xml: unsupported type: map[string]string",
    		Kind: reflect.Map,
    	},
    	{
    		Value: map[*Ship]bool{nil: false},
    		Err:   "xml: unsupported type: map[*xml.Ship]bool",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top