Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 108 for unsupportedOp (2.67 sec)

  1. cmd/sts-handlers.go

    		return
    	}
    
    	action := r.Form.Get(stsAction)
    	switch action {
    	case assumeRole:
    	default:
    		writeSTSErrorResponse(ctx, w, ErrSTSInvalidParameterValue, fmt.Errorf("Unsupported action %s", action))
    		return
    	}
    
    	ctx = newContext(r, w, action)
    
    	// Validate the authentication result here so that failures will be audit-logged.
    	if apiErrCode != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

            return CI_INJECTION_SCRIPT_CONTENTS.computeIfAbsent(ci) { new URL(it.getUrl()).getText(StandardCharsets.UTF_8.name()) }
        }
    
        private static final List<String> UNSUPPORTED = [
            "2.4.2",
            "2.4.1",
            "2.4",
            "2.3",
            "2.2.1",
            "2.2",
            "2.1",
            "2.0.2",
            "2.0.1",
            "2.0",
            "1.16",
            "1.15",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. cmd/format-erasure.go

    	// Validate format version and format type.
    	if formatErasure.Version != formatMetaVersionV1 {
    		return fmt.Errorf("Unsupported version of backend format [%s] found on %s", formatErasure.Version, disk)
    	}
    	if formatErasure.Format != formatBackendErasure && formatErasure.Format != formatBackendErasureSingle {
    		return fmt.Errorf("Unsupported backend format [%s] found on %s", formatErasure.Format, disk)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top