Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for Invert (0.22 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	nsec := int64(ft.HighDateTime)<<32 + int64(ft.LowDateTime)
    	// change starting time to the Epoch (00:00:00 UTC, January 1, 1970)
    	nsec -= 116444736000000000
    	// convert into nanoseconds
    	nsec *= 100
    	return nsec
    }
    
    func NsecToFiletime(nsec int64) (ft Filetime) {
    	// convert into 100-nanosecond
    	nsec /= 100
    	// change starting time to January 1, 1601
    	nsec += 116444736000000000
    	// split into high / low
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

          this.bimap = checkNotNull(bimap);
        }
    
        @Override
        protected B doForward(A a) {
          return convert(bimap, a);
        }
    
        @Override
        protected A doBackward(B b) {
          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
          Y output = bimap.get(input);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

          this.bimap = checkNotNull(bimap);
        }
    
        @Override
        protected B doForward(A a) {
          return convert(bimap, a);
        }
    
        @Override
        protected A doBackward(B b) {
          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
          Y output = bimap.get(input);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        bool loseInfo;
        const llvm::fltSemantics& original_float_semantics = value.getSemantics();
        value.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven,
                      &loseInfo);
        float f = value.convertToFloat();
        APFloat result(1.f / std::sqrt(f));
        result.convert(original_float_semantics, APFloat::rmNearestTiesToEven,
                       &loseInfo);
        return result;
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__policy__v1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "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. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "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)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          ArrayRef<int32_t> dims(dim_to_expand);
          auto dim_attr = DenseIntElementsAttr::get(dim_type, dims);
          auto dim = rewriter.create<arith::ConstantOp>(op.getLoc(), dim_attr);
    
          input_shape.insert(input_shape.begin() + dim_to_expand, 1);
          TensorType expanded_type = input_type.clone(input_shape);
          input = rewriter.create<TFL::ExpandDimsOp>(op.getLoc(), expanded_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    func (ab *AsmBuf) PutOpBytesLit(offset int, op *opBytes) {
    	for int(op[offset]) != 0 {
    		ab.Put1(byte(op[offset]))
    		offset++
    	}
    }
    
    // Insert inserts b at offset i.
    func (ab *AsmBuf) Insert(i int, b byte) {
    	ab.off++
    	copy(ab.buf[i+1:ab.off], ab.buf[i:ab.off-1])
    	ab.buf[i] = b
    }
    
    // Last returns the byte at the end of the buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top