Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for mood (0.23 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	0x66, 4635,
    	0x0, 4619,
    	/*4619*/ uint16(xCondDataSize), 4623, 4629, 0,
    	/*4623*/ uint16(xSetOp), uint16(MOVD),
    	/*4625*/ uint16(xReadSlashR),
    	/*4626*/ uint16(xArgMm),
    	/*4627*/ uint16(xArgRM32),
    	/*4628*/ uint16(xMatch),
    	/*4629*/ uint16(xSetOp), uint16(MOVD),
    	/*4631*/ uint16(xReadSlashR),
    	/*4632*/ uint16(xArgMm),
    	/*4633*/ uint16(xArgRM32),
    	/*4634*/ uint16(xMatch),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    									Properties: map[string]apiextensions.JSONSchemaProps{
    										"good": {
    											Type:    "string",
    											Pattern: "a",
    										},
    										"bad": {
    											Type:    "string",
    											Pattern: "b",
    										},
    									},
    									Default: jsonPtr(map[string]interface{}{
    										"good": "a",
    										"bad":  "a",
    									}),
    								},
    								"e": {
    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/cmd/compile/internal/ssagen/ssa.go

    	{ir.ODIV, types.TUINT64}: ssa.OpDiv64u,
    
    	{ir.OMOD, types.TINT8}:   ssa.OpMod8,
    	{ir.OMOD, types.TUINT8}:  ssa.OpMod8u,
    	{ir.OMOD, types.TINT16}:  ssa.OpMod16,
    	{ir.OMOD, types.TUINT16}: ssa.OpMod16u,
    	{ir.OMOD, types.TINT32}:  ssa.OpMod32,
    	{ir.OMOD, types.TUINT32}: ssa.OpMod32u,
    	{ir.OMOD, types.TINT64}:  ssa.OpMod64,
    	{ir.OMOD, types.TUINT64}: ssa.OpMod64u,
    
    	{ir.OAND, types.TINT8}:   ssa.OpAnd8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.6.md

    * Exclude nodes labeled as master from LoadBalancer / NodePort; restores documented behaviour. ([#44745](https://github.com/kubernetes/kubernetes/pull/44745), [@justinsb](https://github.com/justinsb))
    * Fix for [scaling down remaining good replicas when a failed Deployment is paused](https://github.com/kubernetes/kubernetes/issues/44436). ([#44616](https://github.com/kubernetes/kubernetes/pull/44616), [@kargakis](https://github.com/kargakis))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.20.md

          exists in k/k repo since we removed federation/, and I don't see it
          in https://github.com/kubernetes-sigs/kubefed/ either. I'm assuming
          that it's gone for good now.
      
      - bazel: output go_binary rule directly from go_binary_conditional_pure
        
        From: [@mikedanese](https://github.com/mikedanese):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.13.md

      - The deprecated `--etcd-quorum-read` flag has been removed. Quorum reads are now always enabled when fetching data from etcd....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // SmallVector<Values, 4> new_values;
    // for (int i = 0; i < num_iterations; ++i) {
    //   body_fn(old_values, &new_values, ...);
    //   old_values = new_values;
    // }
    // ```
    //
    // Under the hood an induction variable is prepended to values to control the
    // number of iterations, but that is transparent to `body_fn`, which does not
    // need to care about that.
    static void CreateWhile32(Location loc, int num_iterations,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      func.return %result : tensor<3xi1>
    
      // CHECK-NOT: tfl.one_hot
    }
    
    // CHECK-LABEL: replaceReshapeEqualWithOneHot
    func.func @replaceReshapeEqualWithOneHot(%arg: tensor<2x1xi32>) -> tensor<2x3xi1> {
      // Good match: Replace with one_hot
      %cst = arith.constant dense<[0, 1, 2]> : tensor<3xi32>
      %result = "tfl.equal"(%arg, %cst) : (tensor<2x1xi32>, tensor<3xi32>) -> tensor<2x3xi1>
      func.return %result : tensor<2x3xi1>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // of this period, it becomes the LastKnownGood. Note that if Spec.ConfigSource is
      // reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil,
      // because the local default config is always assumed good.
      // You should not make assumptions about the node's method of determining config stability
      // and correctness, as this may change or become configurable in the future.
      // +optional
    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

    	// of this period, it becomes the LastKnownGood. Note that if Spec.ConfigSource is
    	// reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil,
    	// because the local default config is always assumed good.
    	// You should not make assumptions about the node's method of determining config stability
    	// and correctness, as this may change or become configurable in the future.
    	// +optional
    	LastKnownGood *NodeConfigSource
    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