- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 86 for unrecognized (0.07 seconds)
-
cmd/sts-handlers.go
// unrecognized roleArn is an error if strings.TrimSpace(iamPolicyClaimNameOpenID()) == "" { writeSTSErrorResponse(ctx, w, ErrSTSInvalidParameterValue, fmt.Errorf("Error processing %s parameter: %v", stsRoleArn, err)) return } // If there *is* a claim-based provider configured, then // treat an unrecognized roleArn the same as no roleArn
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 36.6K bytes - Click Count (0) -
cmd/admin-handlers.go
} if currentReleaseTime.IsZero() || currentReleaseTime.Equal(timeSentinel) { apiErr := errorCodes.ToAPIErr(ErrMethodNotAllowed) apiErr.Description = fmt.Sprintf("unable to perform in-place update, release time is unrecognized: %s", currentReleaseTime) writeErrorResponseJSON(ctx, w, apiErr, r.URL) return } vars := mux.Vars(r) updateURL := vars["updateURL"] dryRun := r.Form.Get("dry-run") == "true"
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 99.7K bytes - Click Count (0) -
src/cmd/asm/internal/asm/operand_test.go
buildcfg.GOOS = "linux" // obj can handle this OS for all architectures. buildcfg.GOARCH = goarch architecture := arch.Set(goarch, false) if architecture == nil { panic("asm: unrecognized architecture " + goarch) } ctxt := obj.Linknew(architecture.LinkArch) ctxt.Pkgpath = "pkg" return architecture, ctxt } func newParser(goarch string) *Parser { architecture, ctxt := setArch(goarch)
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue Aug 29 18:31:05 GMT 2023 - 23.9K bytes - Click Count (0) -
src/cmd/asm/internal/asm/parse.go
if p.pseudo(word, operands) { continue } i, present := p.arch.Instructions[word] if present { p.instruction(i, word, cond, operands) continue } p.errorf("unrecognized instruction %q", word) } if p.errorCount > 0 { return nil, false } p.patch() return p.firstProg, true } // ParseSymABIs parses p's assembly code to find text symbol
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Nov 12 03:59:40 GMT 2025 - 37.3K bytes - Click Count (0) -
cmd/batch-handlers.go
req.KeyRotate = &BatchJobKeyRotateV1{} case madmin.BatchJobExpire: req.Expire = &BatchJobExpire{} default: writeErrorResponseJSON(ctx, w, toAPIError(ctx, errors.New("job ID format unrecognized")), r.URL) return } } ri := &batchJobInfo{} if err := ri.load(ctx, objectAPI, req); err != nil { if !errors.Is(err, errNoSuchJob) { batchLogIf(ctx, err) }Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 63.5K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
/** The key of the message: {item} cannot be converted to {propertyType}. */ public static final String CONSTRAINTS_TypeAny_MESSAGE = "{constraints.TypeAny.message}"; /** The key of the message: {item} has an unrecognized URI. */ public static final String CONSTRAINTS_UriType_MESSAGE = "{constraints.UriType.message}"; /** The key of the message: {item} is not a valid CRON expression. */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Jul 05 02:36:47 GMT 2025 - 119.6K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.34.md
- Changed handling of `CustomResourceDefinitions` with unrecognized formats. Writing a schema with an unrecognized format now triggered a warning (the write was still accepted). ([#133136](https://github.com/kubernetes/kubernetes/pull/133136), [@yongruilin](https://github.com/yongruilin))
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Wed Dec 10 01:13:50 GMT 2025 - 333.3K bytes - Click Count (2) -
tensorflow/c/c_api.cc
metadata.type = TF_ATTR_FUNC; } else { status->status = InvalidArgument( "Attribute '", attr_name, "' has an empty value of an unrecognized type '", typestr, "'"); return metadata; } } } break; case tensorflow::AttrValue::kPlaceholder: metadata.is_list = 0;Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Sat Oct 04 05:55:32 GMT 2025 - 102.4K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.35.md
- Kube-apiserver: Fixed a `v1.34` regression in `CustomResourceDefinition` handling that incorrectly warned about unrecognized formats on number and integer properties. ([#133896](https://github.com/kubernetes/kubernetes/pull/133896), [@yongruilin](https://github.com/yongruilin)) [SIG API Machinery, Apps, Architecture, Auth, CLI, Cloud Provider, Contributor Experience,...
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Wed Dec 17 13:01:55 GMT 2025 - 228.5K bytes - Click Count (0) -
src/main/webapp/js/admin/jquery-3.7.1.min.js
(e,t)},I.attr=function(e,t){(e.ownerDocument||e)!=T&&V(e);var n=b.attrHandle[t.toLowerCase()],r=n&&ue.call(b.attrHandle,t.toLowerCase())?n(e,t,!C):void 0;return void 0!==r?r:e.getAttribute(t)},I.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},ce.uniqueSort=function(e){var t,n=[],r=0,i=0;if(a=!le.sortStable,o=!le.sortStable&&ae.call(e,0),de.call(e,l),a){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)he.call(e,n[r],1)}return o=null,e},ce.fn.uniqueSort=function(){return...Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Oct 26 01:07:52 GMT 2024 - 85.5K bytes - Click Count (1)