Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for GetZ (0.05 sec)

  1. test/fixedbugs/issue20014.dir/main.go

    }
    
    func (t *T) GetX() int {
    	return t.X
    }
    func (t *T) GetY() int {
    	return t.Y
    }
    func (t *T) GetZ() int {
    	return t.Z
    }
    
    func samePackage() {
    	var t T
    	println(t.GetX())
    	println(t.GetZ())
    }
    
    func crossPackage() {
    	var t a.T
    	println(t.GetX())
    	println(t.GetZ())
    }
    
    // This global variable is set by the linker using the -k option.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 19:48:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

            bindings.methodBindings*.getClass() == [ManagedPropertyMethodBinding, ManagedPropertyMethodBinding]
            bindings.methodBindings*.viewMethod*.name == ["getZ", "setZ"]
        }
    
        static abstract class TypeWithImplementedProperty {
            int getZ() { 0 }
            void setZ(int value) {}
        }
    
        def "extracts simple type with an implemented property"() {
            def bindings = extract(TypeWithImplementedProperty)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue20014.dir/a/a.go

    package a
    
    type T struct {
    	X int `go:"track"`
    	Y int `go:"track"`
    	Z int // untracked
    }
    
    func (t *T) GetX() int {
    	return t.X
    }
    func (t *T) GetY() int {
    	return t.Y
    }
    func (t *T) GetZ() int {
    	return t.Z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 21 20:24:34 UTC 2021
    - 367 bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Objects.java

       * has three properties, {@code x}, {@code y}, and {@code z}, one could write:
       *
       * <pre>{@code
       * public int hashCode() {
       *   return Objects.hashCode(getX(), getY(), getZ());
       * }
       * }</pre>
       *
       * <p><b>Warning:</b> When a single object is supplied, the returned hash code does not equal the
       * hash code of that object.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Objects.java

       * has three properties, {@code x}, {@code y}, and {@code z}, one could write:
       *
       * <pre>{@code
       * public int hashCode() {
       *   return Objects.hashCode(getX(), getY(), getZ());
       * }
       * }</pre>
       *
       * <p><b>Warning:</b> When a single object is supplied, the returned hash code does not equal the
       * hash code of that object.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/gpu_fusion.cc

        Operation *op = rewriter.create(state);
        rewriter.replaceOp(batch_norm, op->getResults());
    
        // Depending on the case, we may fuse the add, the relu, or both.
        if (!add_op || add_op.getZ().hasOneUse()) {
          // We fuse the Relu only if the add has a single use, otherwise we only
          // fuse the add itself.
          op->setAttr("activation_mode", rewriter.getStringAttr("Relu"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        auto new_filter =
            rewriter.create<TF::MulOp>(mul_op.getLoc(), filter, new_const_val)
                .getZ();
        // If bias isn't None, it needs to be multiplied as well.
        if (!mlir::isa<NoneType>(bias.getType())) {
          bias = rewriter.create<TF::MulOp>(mul_op.getLoc(), bias, constant_val)
                     .getZ();
        }
    
        auto fc = rewriter.create<TFL::FullyConnectedOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

          /*weight_zp=*/0,
          /*input_output_dims=*/ArrayRef<int64_t>({0}),
          /*weight_output_dims=*/ArrayRef<int64_t>({num_dims - 1}));
      return builder.create<TF::SubOp>(loc, xla_conv_output, zp_offset).getZ();
    }
    
    // Creates a XlaConvV2Op from TF Conv2DOp and returns its output. The returned
    // value will be used as an input of the next op.
    Value CreateXlaConvOpFromTfConv2dOp(OpBuilder &builder, Location loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (!l || !r) return failure();
    
        auto element_type = getElementTypeOrSelf(l.getType());
        if (!element_type.isBF16()) return failure();
    
        auto out_type = op.getZ().getType();
    
        l = rewriter.create<ConvertOp>(op.getLoc(), l, rewriter.getF32Type());
        r = rewriter.create<ConvertOp>(op.getLoc(), r, rewriter.getF32Type());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top