Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for attr_ (0.16 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

          if (value.IsBool()) {
            auto attr = value.AsBool();
            auto named_attr =
                builder.getNamedAttr(key, BuildVhloBooleanV1Attr(attr, builder));
            attributes.emplace_back(named_attr);
          }
          if (value.IsString()) {
            auto attr = value.AsString();
            auto named_attr = builder.getNamedAttr(
                key, BuildVhloStringV1Attr(attr.str(), builder));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadataTest.groovy

        def attributes(Map<String, String> values) {
            def attrs = AttributeTestUtil.attributesFactory().mutable()
            attrs.attribute(ProjectInternal.STATUS_ATTRIBUTE, 'integration')
            if (values) {
                values.each { String key, String value ->
                    attrs.attribute(Attribute.of(key, String), value)
                }
            }
            return attrs.asImmutable()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

        I32Attr:$num_tensor_list_or_flow_in
      );
    
      let results = (outs
         Variadic<TF_Tensor>:$result
      );
    
      let assemblyFormat = "`(`$max_iterations`,` $tensor_list_or_flow_in`,` $invariant_args `)` attr-dict `:` functional-type(operands, results)";
    }
    
    def TFAsyncWhileOp : TensorflowMlrt_Op<"tf_async_while", [Pure]> {
      let summary = "Asynchronously execution of while op for tf_mlrt";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

                override fun preVisitDirectory(dir: Path, attrs: BasicFileAttributes): FileVisitResult {
                    return if (Files.isReadable(dir))
                        FileVisitResult.CONTINUE
                    else
                        FileVisitResult.SKIP_SUBTREE
                }
    
                override fun visitFile(file: Path, attrs: BasicFileAttributes): FileVisitResult {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

                getMetadata() >> configurationMetadata
                asVariant() >> variant
                getAttributes() >> attrs
            }
        }
    
        private VariantGraphResolveState defaultConfiguration(ImmutableAttributes attrs = attributes([:])) {
            return consumableConfiguration('default', attrs)
        }
    
        enum JavaVersion {
            JAVA5,
            JAVA6,
            JAVA7,
            JAVA8,
            JAVA9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

                       "Ignored for MLIR input"),
        llvm::cl::Optional, llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    opt<bool> elide_large_elements_attrs(
        "e",
        llvm::cl::desc(
            "Elide large elements attrs while dumping the output StableHLO."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    }  // namespace
    
    namespace mlir {
    
    namespace {
    // Dump the ModuleOp 'module' to the file specified using 'outputFileName'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/log/slog/value.go

    	return v.any.(LogValuer)
    }
    
    // Group returns v's value as a []Attr.
    // It panics if v's [Kind] is not [KindGroup].
    func (v Value) Group() []Attr {
    	if sp, ok := v.any.(groupptr); ok {
    		return unsafe.Slice((*Attr)(sp), v.num)
    	}
    	panic("Group: bad kind")
    }
    
    func (v Value) group() []Attr {
    	return unsafe.Slice((*Attr)(v.any.(groupptr)), v.num)
    }
    
    //////////////// Other
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    }
    
    func endpointStatusUpdateAttributes() admission.Attributes {
    	attrs := endpointCreateAttributes()
    	return admission.NewAttributesRecord(
    		attrs.GetObject(), attrs.GetObject(), attrs.GetKind(), attrs.GetNamespace(), attrs.GetName(),
    		attrs.GetResource(), "status", admission.Update, &metav1.UpdateOptions{}, false, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

            }
        }
    
    
        SmbFileHandleImpl openUnshared ( int flags, int access, int sharing, int attrs, int options ) throws CIFSException {
            return openUnshared(getUncPath(), flags, access, sharing, attrs, options);
        }
    
    
        SmbFileHandleImpl openUnshared ( String uncPath, int flags, int access, int sharing, int attrs, int options ) throws CIFSException {
            SmbFileHandleImpl fh = null;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_calibration_statistics_saver.cc

      }
    
      SymbolTable symbol_table(op->getParentOfType<ModuleOp>());
      // Check the functions associated to CaseOp, IfOp and WhileOp.
      for (const NamedAttribute& attr : op->getAttrs()) {
        FlatSymbolRefAttr symbol_attr =
            dyn_cast_or_null<FlatSymbolRefAttr>(attr.getValue());
        if (!symbol_attr) continue;
    
        func::FuncOp target_func = dyn_cast_or_null<func::FuncOp>(
            symbol_table.lookup(symbol_attr.getValue()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top