Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 381 for unsupportedOp (3.22 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeAnnotatedMethodReader.java

                            requests.add(jvmSetterRequest);
                            break;
                        default:
                            throw new IllegalArgumentException("Unsupported accessor type: " + accessorSpec.accessorType);
                    }
                }
                return requests.stream()
                    .map(Success::new)
                    .collect(Collectors.toList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

            }
            if (JavaPropertyReflectionUtil.getAnnotation(listener.getClass(), DeprecatedInGradleScope.class) != null) {
                // Explicitly unsupported Listener types are disallowed.
                return false;
            }
            // We had to check for unsupported first to reject a listener that implements both allowed and disallowed interfaces.
            // Just reject everything we don't know.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/crypto/x509/parser.go

    	}
    
    	var version int
    	if !tbs.PeekASN1Tag(cryptobyte_asn1.INTEGER) {
    		return nil, errors.New("x509: unsupported crl version")
    	}
    	if !tbs.ReadASN1Integer(&version) {
    		return nil, errors.New("x509: malformed crl")
    	}
    	if version != x509v2Version {
    		return nil, fmt.Errorf("x509: unsupported crl version: %d", version)
    	}
    
    	var sigAISeq cryptobyte.String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableListMultimap.java

        return invertedMultimap;
      }
    
      /**
       * Guaranteed to throw an exception and leave the multimap unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final ImmutableList<V> removeAll(@CheckForNull Object key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

          // TODO(b/124045874): Support loading resource functions via a top sort
          return absl::UnimplementedError(
              "Create Resource functions with captures are currently unsupported.");
        }
      }
      return Status();
    }
    
    // Retrieves the TensorHandle associated with `node_id` from `obj_graph`, and
    // set `*handle` to point to it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/AbstractInstrumentationProcessor.java

            } else if (element instanceof TypeElement) {
                return ((TypeElement) element).getQualifiedName().toString();
            } else {
                throw new IllegalArgumentException("Unsupported element type to read qualified name from: " + element.getClass());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/abi.go

    			wfs[i].Type = obj.WasmF32
    		case types.TFLOAT64:
    			wfs[i].Type = obj.WasmF64
    		case types.TUNSAFEPTR:
    			wfs[i].Type = obj.WasmPtr
    		default:
    			base.ErrorfAt(f.Pos(), 0, "go:wasmimport %s %s: unsupported parameter type %s", f.WasmImport.Module, f.WasmImport.Name, t.String())
    		}
    		wfs[i].Offset = p.FrameOffset(result)
    	}
    	return wfs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client.go

    				{group: X25519, data: keyShareKeys.ecdhe.PublicKey().Bytes()},
    			}
    		} else {
    			if _, ok := curveForCurveID(curveID); !ok {
    				return nil, nil, nil, errors.New("tls: CurvePreferences includes unsupported curve")
    			}
    			keyShareKeys.ecdhe, err = generateECDHEKey(config.rand(), curveID)
    			if err != nil {
    				return nil, nil, nil, err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. chainable_api.go

    			case string:
    				tx.Statement.Selects = append(tx.Statement.Selects, arg)
    			case []string:
    				tx.Statement.Selects = append(tx.Statement.Selects, arg...)
    			default:
    				tx.AddError(fmt.Errorf("unsupported select args %v %v", query, args))
    				return
    			}
    		}
    
    		if clause, ok := tx.Statement.Clauses["SELECT"]; ok {
    			clause.Expression = nil
    			tx.Statement.Clauses["SELECT"] = clause
    		}
    	case string:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableListMultimap.java

        return invertedMultimap;
      }
    
      /**
       * Guaranteed to throw an exception and leave the multimap unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final ImmutableList<V> removeAll(@CheckForNull Object key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top