Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for getProp2 (0.21 sec)

  1. testing/performance/src/templates/java-source/Production.java

            List<String> strings = Arrays.asList(p, this.getProperty());
            int len = 0;
            for (String s: strings) {
                len += s.length();
                <% propertyCount.times { %>
                len += o.getProp${it}().length();
                <%}%>
            }
            return len>10;
        }
        <% } %>
    
        public ${productionClassName}(){
            this.property = null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/project-with-source/Production.java

            this.property = param;
        }
    
        public String getProperty() {
            return property;
        }
    <% propertyCount.times { %>
        private String prop${it};
    
        public String getProp${it}() {
            return prop${it};
        }
    
        public void setProp${it}(String value) {
            prop${it} = value;
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 467 bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                    String getProp()
                }
    
                objects.newInstance(Thing)
    """
    
            expect:
            fails()
            failure.assertHasCause("Could not create an instance of type Thing.")
            failure.assertHasCause("Could not generate a decorated class for type Thing.")
            failure.assertHasCause("Cannot have abstract method Thing.getProp().")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

                    T display
                    String toString() { display.toString() }
                }
    
                abstract class ATask extends DefaultTask {
                    @Input
                    abstract ListProperty<$type> getProp()
    
                    @TaskAction
                    void go() {
                        println("prop = \${prop.get()}")
                    }
                }
    
                tasks.create("thing", ATask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

        }
    
        interface Params extends BuildServiceParameters {
            String getProp()
    
            void setProp(String value)
        }
    
        static abstract class ServiceImpl implements BuildService<Params> {
            static List<ServiceImpl> instances = []
    
            String getProp() {
                return getParameters().prop
            }
    
            static void reset() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

      // check values of `paddings` and `crops` to make sure it really stands for
      // a dilated conv.
      auto stb_paddings = stb_op.getPaddings();
      auto bts_crops = bts_op.getCrops();
      ElementsAttr stb_paddings_attr, bts_crops_attr;
      if (!matchPattern(stb_paddings, m_Constant(&stb_paddings_attr)) ||
          !matchPattern(bts_crops, m_Constant(&bts_crops_attr))) {
        return rewriter.notifyMatchFailure(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        }
    
        input_shape.assign(input_type.getShape().begin(),
                           input_type.getShape().end());
      }
    
      auto crops_type = mlir::cast<TensorType>(op.getCrops().getType());
      if (crops_type.hasRank()) {
        if (crops_type.getRank() != 2)
          return op.emitOpError()
                 << "requires crops to be a 2D tensor, but got " << crops_type;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto input_shape = input_ty.getShape();
    
        DenseIntElementsAttr block_shape;
        DenseIntElementsAttr crops;
        if (!matchPattern(op.getBlockShape(), m_Constant(&block_shape)) ||
            !matchPattern(op.getCrops(), m_Constant(&crops))) {
          return failure();
        }
    
        auto block_shape_ty = block_shape.getType();
        if (!block_shape_ty.hasRank() || block_shape_ty.getRank() != 1) {
          return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    OS]});s.operator=s.operator?s.operator+m:m,f="operator",d=!1;break;case T.comment:if(f)if(d||b&&b[A.FIELDS.TYPE]===T.space||f==="insensitive"){var de=(0,Y.getProp)(s,"spaces",f,"after")||"",De=(0,Y.getProp)(s,"raws","spaces",f,"after")||de;(0,Y.ensureObject)(s,"raws","spaces",f),s.raws.spaces[f].after=De+m}else{var ee=s[f]||"",oe=(0,Y.getProp)(s,"raws",f)||ee;(0,Y.ensureObject)(s,"raws"),s.raws[f]=oe+m}else c=c+m;break;default:return this.error('Unexpected "'+m+'" found.',{index:p[A.FIELDS.START...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top