Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for perG (0.07 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"array"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				// forbidden due to per-CRD cost limit being exceeded
    				forbidden("spec.validation.openAPIV3Schema"),
    				// forbidden due to messageExpression exceeding per-expression cost limit
    				forbidden("spec.validation.openAPIV3Schema.properties[f].x-kubernetes-validations[0].messageExpression"),
    				// additional message indicated messageExpression's contribution to exceeding the per-CRD cost limit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	n := sc.hs.MaxHeaderBytes
    	if n <= 0 {
    		n = DefaultMaxHeaderBytes
    	}
    	// http2's count is in a slightly different unit and includes 32 bytes per pair.
    	// So, take the net/http.Server value and pad it up a bit, assuming 10 headers.
    	const perFieldOverhead = 32 // per http2 spec
    	const typicalHeaders = 10   // conservative
    	return uint32(n + typicalHeaders*perFieldOverhead)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // 2. Transpose to [H, W, ..., G, filter_in_depth, out_depth / G].
          llvm::SmallVector<int64_t, 6> perm(num_dims + 1);
          std::iota(perm.begin(), perm.end(), 0);
          std::swap(perm[num_spatial_dims], perm[num_spatial_dims + 1]);
          std::swap(new_shape[num_spatial_dims], new_shape[num_spatial_dims + 1]);
    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. prow/config/calico.yaml

                  bpfMapSizeRoute:
                    description: BPFMapSizeRoute sets the size for the routes map.  The
                      routes map should be large enough to hold one entry per workload
                      and a handful of entries per host (enough to cover its own IPs and
                      tunnel IPs).
                    type: integer
                  bpfPSNATPorts:
                    anyOf:
                    - type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.10.md

    * Reduce Metrics Server memory requirement from 140Mi + 4Mi per node to 40Mi + 4Mi per node. ([#58391](https://github.com/kubernetes/kubernetes/pull/58391), [@kawych](https://github.com/kawych))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %1 = "tfl.transpose"(%0, %perm) : (tensor<1x40x40x3xf32>, tensor<4xi32>) -> tensor<1x3x40x40xf32>
      %2 = "tfl.add"(%1, %bias) {fused_activation_function = "NONE"} : (tensor<1x3x40x40xf32>, tensor<1x3x1x1xf32>) -> tensor<1x3x40x40xf32>
      func.return %2 : tensor<1x3x40x40xf32>
    
      // CHECK: %[[perm:.*]] = arith.constant dense<[0, 3, 1, 2]> : tensor<4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.23.md

    - The `apiserver` exposes 4 new metrics that allow to track the status of the Service CIDRs allocations:
          - current number of available IPs per Service CIDR
          - current number of used IPs per Service CIDR
          - total number of allocation per Service CIDR
          - total number of allocation errors per ServiceCIDR ([#104119](https://github.com/kubernetes/kubernetes/pull/104119), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // the ReadOnly setting in VolumeMounts.
      // +optional
      optional bool readOnly = 5;
    
      // kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set). defaults to shared
      optional string kind = 6;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// Defaults to false (read/write). ReadOnly here will force
    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    	ReadOnly *bool
    	// Expected values Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set). defaults to shared
    	Kind *AzureDataDiskKind
    }
    
    // ScaleIOVolumeSource represents a persistent ScaleIO volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top