Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for typekind (0.09 sec)

  1. schema/relationship.go

    		Value: schema.Table,
    	}
    
    	var (
    		typeName = polymorphic + "Type"
    		typeId   = polymorphic + "ID"
    	)
    
    	if value, ok := field.TagSettings["POLYMORPHICTYPE"]; ok {
    		typeName = strings.TrimSpace(value)
    	}
    
    	if value, ok := field.TagSettings["POLYMORPHICID"]; ok {
    		typeId = strings.TrimSpace(value)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	}
    
    	/* typelink */
    	sect = state.allocateNamedDataSection(seg, genrelrosecname(".typelink"), []sym.SymKind{sym.STYPELINK}, relroSecPerm)
    
    	typelink := ldr.CreateSymForUpdate("runtime.typelink", 0)
    	ldr.SetSymSect(typelink.Sym(), sect)
    	typelink.SetType(sym.SRODATA)
    	state.datsize += typelink.Size()
    	state.checkdatsize(sym.STYPELINK)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    #include "mlir/Support/DebugStringHelper.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Support/TypeID.h"  // from @llvm-project
    #include "mlir/Transforms/FoldUtils.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        } else {
          return failure();
        }
    
        int64_t expected_dim = fft_length;
        std::string fft_string = "RFFT";
        if (typeid(OpTy) == typeid(TF::IRFFTOp)) {
          expected_dim = fft_length / 2 + 1;
          fft_string = "IRFFT";
        }
        Location loc = op.getLoc();
    
        // The inner-most dim cannot be dynamic.
    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