Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for c000 (0.12 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK-DAG:      %[[CST_0:.*]] = arith.constant dense<1> : tensor<i32>
    // CHECK-DAG:      %[[CST_1:.*]] = arith.constant dense<0> : tensor<i32>
    // CHECK-DAG:      %[[CST_2:.*]] = arith.constant dense<1000> : tensor<i32>
    // CHECK:          %[[WHILEREGION_0:.*]]:3 = "tf.WhileRegion"(%[[CST_1]], %[[CST_0]], %[[CST_2]]) <{is_stateless = false, parallel_iterations = 10 : i64}> ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"defaultMode": "defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. doc/go_spec.html

    1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
    2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
    -1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
    0i                  int         0 is an integer value
    (42 + 0i)           float32     42.0 (with zero imaginary part) is in the set of float32 values
    </pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated KeyToPath items = 2;
    
      // defaultMode is optional: mode bits used to set permissions on created files by default.
      // Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511.
      // YAML accepts both octal and decimal values, JSON requires decimal values for mode bits.
      // Defaults to 0644.
      // Directories within the path are not affected by this setting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// +listType=atomic
    	Items []KeyToPath `json:"items,omitempty" protobuf:"bytes,2,rep,name=items"`
    	// defaultMode is Optional: mode bits used to set permissions on created files by default.
    	// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511.
    	// YAML accepts both octal and decimal values, JSON requires decimal values
    	// for mode bits. Defaults to 0644.
    	// Directories within the path are not affected by this setting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    									Type:      "string",
    									MaxLength: int64Ptr(5000),
    									XValidations: apiextensions.ValidationRules{
    										{Rule: "self.contains('keyword')"},
    									},
    								},
    							},
    						},
    						"map": {
    							Type:          "object",
    							MaxProperties: int64Ptr(1000),
    							AdditionalProperties: &apiextensions.JSONSchemaPropsOrBool{
    								Allows: 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. pkg/apis/core/validation/validation.go

    				if maxRatio.Value() < resource.MaxMilliValue && minQuantityValue < resource.MaxMilliValue && maxQuantityValue < resource.MaxMilliValue {
    					maxRatioValue = float64(maxRatio.MilliValue()) / 1000
    					minQuantityValue = minQuantity.MilliValue()
    					maxQuantityValue = maxQuantity.MilliValue()
    				}
    				maxRatioLimit := float64(maxQuantityValue) / float64(minQuantityValue)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

    ### Docs
    
    * 📝 Add External Link: Authorization on FastAPI with Casbin. PR [#5712](https://github.com/tiangolo/fastapi/pull/5712) by [@Xhy-5000](https://github.com/Xhy-5000).
    * ✏ Fix typo in `docs/en/docs/async.md`. PR [#5785](https://github.com/tiangolo/fastapi/pull/5785) by [@Kingdageek](https://github.com/Kingdageek).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    parameter in kube-proxy is misleading, no port is opened with this address. Instead it is translated internally to "nodeIP". The nodeIPs for both families are now taken from the Node object if `--bind-address` is unspecified or set to the "any" address (0.0.0.0 or ::). It is recommended to leave `--bind-address` unspecified, and in particular avoid to set it to localhost (127.0.0.1 or ::1) ([#119525](https://github.com/kubernetes/kubernetes/pull/119525), [@uablrek](https://github.com/uablrek)) [SIG Network...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top