Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for pcount (0.15 sec)

  1. src/cmd/compile/internal/ssa/rewriteS390X.go

    	// result: (SLDconst x [r.Amount])
    	for {
    		r := auxToS390xRotateParams(v.Aux)
    		x := v_0
    		if !(r.Start == 0 && r.End == 63-r.Amount) {
    			break
    		}
    		v.reset(OpS390XSLDconst)
    		v.AuxInt = uint8ToAuxInt(r.Amount)
    		v.AddArg(x)
    		return true
    	}
    	// match: (RISBGZ (SRADconst x [c]) {r})
    	// cond: r.Start == r.End && (r.Start+r.Amount)&63 <= c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. true */
        String INDEXER_CLICK_COUNT_ENABLED = "indexer.click.count.enabled";
    
        /** The key of the configuration. e.g. true */
        String INDEXER_FAVORITE_COUNT_ENABLED = "indexer.favorite.count.enabled";
    
        /** The key of the configuration. e.g. 5000 */
        String INDEXER_WEBFS_COMMIT_MARGIN_TIME = "indexer.webfs.commit.margin.time";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.18.md

    - Fix: azure file mount timeout issue ([#88610](https://github.com/kubernetes/kubernetes/pull/88610), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider and Storage]
    - Fix: check disk status before disk azure disk ([#88360](https://github.com/kubernetes/kubernetes/pull/88360), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

    return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    The value is null for CREATE requests. 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest). 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n  See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n  request resource.\nDocumentation on CEL: https://ku...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.24.md

    is changed to not return an error when the specified target can be detected as not a mount point. On Linux, the behavior of detecting a mount point depends on `umount` command is validated when the mounter is created. Additionally, mount point checks will be skipped in CleanupMountPoint/CleanupMountWithForce if the mounter's Unmount having the changed behavior of not returning error when target is not a mount point. ([#109676](https://github.com/kubernetes/kubernetes/pull/109676), [@cartermckinnon...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	switch *mount.RecursiveReadOnly {
    	case core.RecursiveReadOnlyDisabled:
    		// NOP
    	case core.RecursiveReadOnlyEnabled, core.RecursiveReadOnlyIfPossible:
    		if !mount.ReadOnly {
    			allErrs = append(allErrs, field.Forbidden(fldPath, "may only be specified when readOnly is true"))
    		}
    		if mount.MountPropagation != nil && *mount.MountPropagation != core.MountPropagationNone {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.21.md

    ### CSI Service Account Token
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	if elem.Alignment() == 1 && (size == 0 || size == 1 || count == nil) {
    		return
    	}
    	if count == nil {
    		count = s.constInt(types.Types[types.TUINTPTR], 1)
    	}
    	if count.Type.Size() != s.config.PtrSize {
    		s.Fatalf("expected count fit to a uintptr size, have: %d, want: %d", count.Type.Size(), s.config.PtrSize)
    	}
    	var rtype *ssa.Value
    	if rtypeExpr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK:             mhlo.return [[ADD]]
    // CHECK:           })
    // CHECK-SAME:        -> tensor<2x3x5x7xf32>
    // CHECK:           [[COUNT:%.+]] = mhlo.constant dense<4.000000e+00> : tensor<f32>
    // CHECK:           [[DIV_RESULT:%.+]] = chlo.broadcast_divide [[DIVIDEND]], [[COUNT]]
    // CHECK-SAME:        broadcast_dimensions = array<i64>
    // CHECK-SAME:        -> tensor<2x3x5x7xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top