Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for checkSeq (2.53 sec)

  1. ChangeLog.md

    - [`KT-66475`](https://youtrack.jetbrains.com/issue/KT-66475) K2/KMP/Wasm: report WRONG_JS_INTEROP_TYPE from a platform checker
    - [`KT-66474`](https://youtrack.jetbrains.com/issue/KT-66474) K2/KMP/JS: report EXTERNAL_TYPE_EXTENDS_NON_EXTERNAL_TYPE from a platform checker
    - [`KT-66473`](https://youtrack.jetbrains.com/issue/KT-66473) K2/Wasm: FirWasmExternalInheritanceChecker doesn't expand type aliases
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	//  1. PodCIDRs - immutable after first set - checked above
    	//  2. ProviderID - immutable after first set - checked above
    	//  3. Unschedulable - allowed to change
    	//  4. Taints - allowed to change
    	//  5. ConfigSource - allowed to change (and checked above)
    	//  6. DoNotUseExternalID - immutable - checked above
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
                  }
                ],
                "description": "Last time the condition was checked."
              },
              "lastTransitionTime": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            /*rhs_contracting_dimensions=*/rhs_contracting_dimensions);
        // TODO(silvasean): Emit shape checks for contracting dimensions.
        // (The batch dimensions are checked by the broadcasting logic)
        rewriter.replaceOpWithNewOp<DotGeneralOp>(
            op, op.getType(), lhs, rhs, dimension_numbers,
            /*precision_config=*/GetPrecisionConfig(&rewriter));
        return success();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    			case http2StreamError, http2handlerPanicRST, http2writeWindowUpdate:
    				// RFC 7540 Section 5.1 allows sending RST_STREAM, PRIORITY, and WINDOW_UPDATE
    				// in this state. (We never send PRIORITY from the server, so that is not checked.)
    			default:
    				panic(fmt.Sprintf("internal error: attempt to send frame on a half-closed-local stream: %v", wr))
    			}
    		case http2stateClosed:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ..i("colors"),auto:"auto"}),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				forbidden("spec.validation.openAPIV3Schema.additionalProperties"), // structural schema rule: illegal to have additional properties at root
    				// Error for invalid CEL rule is NOT expected here because CEL rules are not checked when the schema is invalid
    			},
    		},
    		{
    			name: "skip CEL expression validation when OpenAPIv3 schema is an invalid structural schema at level below",
    			opts: validationOptions{requireStructuralSchema: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    ### Feature
    
    - A ValidatingAdmissionPolicy now has its `messageExpression` field checked against resolved types. ([#119209](https://github.com/kubernetes/kubernetes/pull/119209), [@jiahuif](https://github.com/jiahuif)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - IPVS: Any ipvs scheduler can now be configured. If a un-usable scheduler is configured `kube-proxy` will re-start and the logs must be checked (same as before but different log printouts). ([#114878](https://github.com/kubernetes/kubernetes/pull/114878), [@uablrek](https://github.com/uablrek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	skipLen
    	skipCap
    )
    
    // assign does left = right.
    // Right has already been evaluated to ssa, left has not.
    // If deref is true, then we do left = *right instead (and right has already been nil-checked).
    // If deref is true and right == nil, just do left = 0.
    // skip indicates assignments (at the top level) that can be avoided.
    // mayOverlap indicates whether left&right might partially overlap in memory. Default is false.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top