Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for regular (0.22 sec)

  1. src/reflect/value.go

    }
    
    // IsNil reports whether its argument v is nil. The argument must be
    // a chan, func, interface, map, pointer, or slice value; if it is
    // not, IsNil panics. Note that IsNil is not always equivalent to a
    // regular comparison with nil in Go. For example, if v was created
    // by calling [ValueOf] with an uninitialized interface variable i,
    // i==nil will be true but v.IsNil will panic as v will be the zero
    // Value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. src/net/http/server.go

    }
    
    // writerOnly hides an io.Writer value's optional ReadFrom method
    // from io.Copy.
    type writerOnly struct {
    	io.Writer
    }
    
    // ReadFrom is here to optimize copying from an [*os.File] regular file
    // to a [*net.TCPConn] with sendfile, or from a supported src type such
    // as a *net.TCPConn on Linux with splice.
    func (w *response) ReadFrom(src io.Reader) (n int64, err error) {
    	buf := getCopyBuf()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__policy__v1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

          (Hmul32u <typ.UInt32>
            (Const32 <typ.UInt32> [int32(umagic32(c).m)])
            x))
        (Const64 <typ.UInt64> [umagic32(c).s-1]))
    
    // For 32-bit divides on 64-bit machines
    // We'll use a regular (non-hi) multiply for this case.
    (Div32u x (Const32 [c])) && umagicOK32(c) && config.RegSize == 8 && umagic32(c).m&1 == 0 =>
      (Trunc64to32
        (Rsh64Ux64 <typ.UInt64>
          (Mul64 <typ.UInt64>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
      if (node.IsControlTrigger()) {
        return builder_.create<mlir::tf_executor::ControlTriggerOp>(
            loc, mlir::ValueRange(operands), result.attributes);
      }
      // Regular TensorFlow operation are wrapped in a tf_executor.island.
      auto island = builder_.create<mlir::tf_executor::IslandOp>(
          result.location, types, control_operands,
          mlir::ArrayRef<mlir::NamedAttribute>{});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
Back to top