Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for get_dates (0.41 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonLogFileStateProbe.groovy

        }
    
        DaemonContext getContext() {
            return context
        }
    
        State getCurrentState() {
            getStates().last()
        }
    
        List<State> getStates() {
            def states = new LinkedList<State>()
            states << Idle
            log.lines().withCloseable { stream ->
                stream.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

          ConversionPatternRewriter& rewriter) const final {
        {
          OperandRange operands = scatter_op.getInputs();
          Value indices = scatter_op.getScatterIndices();
          OperandRange updates = scatter_op.getUpdates();
          if (operands.size() != 1 || updates.size() != 1) return failure();
    
          ShapedType operand_type = mlir::cast<ShapedType>(operands[0].getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			schema: schemas(dateFormat, dateFormat),
    			valid: []string{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", "timestamp('1997-07-16T00:00:00.000Z')"),
    				"self.val1.getDate() == 16",
    				"self.val1.getMonth() == 06", // zero based indexing
    				"self.val1.getFullYear() == 1997",
    				"type(self.val1) == google.protobuf.Timestamp",
    			},
    		},
    		{name: "date-time format",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

         *
         * @return the last modified data as milliseconds since Jan 1, 1970
         */
        @Override
        public long getDate () {
            try {
                return lastModified();
            }
            catch ( SmbException se ) {
                log.debug("getDate", se);
            }
            return 0L;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto indices_ty =
            mlir::dyn_cast<RankedTensorType>(op.getIndices().getType());
        auto updates_ty =
            mlir::dyn_cast<RankedTensorType>(op.getUpdates().getType());
    
        if (!tensor_ty || !indices_ty || !updates_ty) return failure();
        // Last dimension of the indices needs to known at compile time for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    //===----------------------------------------------------------------------===//
    
    mlir::LogicalResult ScatterNdOp::verify() {
      ScatterNdOp op = *this;
      auto indices = op.getIndices();
      auto updates = op.getUpdates();
      auto shape = op.getShape();
      auto output = op.getOutput();
    
      auto updates_type = updates.getType().cast<ShapedType>();
      auto indices_type = indices.getType().cast<ShapedType>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.signing.Signature.getClassifier()> does not have raw return type assignable to org.gradle.api.provider.Property in (Signature.java:0)
    Method <org.gradle.plugins.signing.Signature.getDate()> does not have raw return type assignable to org.gradle.api.provider.Property in (Signature.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top