Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 281 for attr_ (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^(TASKSTATS|TS)_/ ||
    		$2 ~ /^CGROUPSTATS_/ ||
    		$2 ~ /^GENL_/ ||
    		$2 ~ /^STATX_/ ||
    		$2 ~ /^RENAME/ ||
    		$2 ~ /^UBI_IOC[A-Z]/ ||
    		$2 ~ /^UTIME_/ ||
    		$2 ~ /^XATTR_(CREATE|REPLACE|NO(DEFAULT|FOLLOW|SECURITY)|SHOWCOMPRESSION)/ ||
    		$2 ~ /^ATTR_(BIT_MAP_COUNT|(CMN|VOL|FILE)_)/ ||
    		$2 ~ /^FSOPT_/ ||
    		$2 ~ /^WDIO[CFS]_/ ||
    		$2 ~ /^NFN/ ||
    		$2 !~ /^NFT_META_IIFTYPE/ &&
    		$2 ~ /^NFT_/ ||
    		$2 ~ /^NF_NAT_/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        device: The tensorflow device. eg. "/CPU:0"
        op_attrs: The tensorflow attributes excluding the func attrs.
        op_func_attrs: The func attrs.
        op_name: The tensorflow op name. eg. "tf.AddV2"
    
        Example:
          %out_ch = tfrt_fallback_async.createop(%in_ch) key(0) device("/CPU:0")
            "some.op"() {attr1 = value, attr2 = value2} {f_attr1 = "fn1", f_attr2 = "fn2"} num_args(1)
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

            schema.attribute(attr1)
            schema.attribute(attr2)
            producer.attribute(attr2)
            producer.attribute(attr3)
    
            expect:
            schema.withProducer(producer).selectionSchema.hasAttribute(attr1)
            schema.withProducer(producer).selectionSchema.hasAttribute(attr2)
            schema.withProducer(producer).selectionSchema.hasAttribute(attr3)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. src/log/slog/handler_test.go

    			replace:  func([]string, Attr) Attr { return Attr{} },
    			attrs:    []Attr{Group("g", Int("a", 1))},
    			wantText: "",
    			wantJSON: `{}`,
    		},
    		{
    			name: "replace empty 1",
    			with: func(h Handler) Handler {
    				return h.WithGroup("g").WithAttrs([]Attr{Int("a", 1)})
    			},
    			replace:  func([]string, Attr) Attr { return Attr{} },
    			attrs:    []Attr{Group("h", Int("b", 2))},
    			wantText: "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

      for (auto attr : kQuantizationAxisAttrs) {
        if (defining_op->hasAttr(attr)) {
          return defining_op->getAttr(attr);
        }
      }
      // Not found.
      return rewriter.getI64IntegerAttr(-1);
    }
    
    LogicalResult CheckIfAttrIs8Bit(const std::string& attr, Operation* op,
                                    bool& is_8_bit) {
      Type element_type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/AbstractModuleDependencySpec.groovy

        }
    
        void "can set attributes"() {
            def attr1 = Attribute.of("attr1", String)
            def attr2 = Attribute.of("attr2", Integer)
    
            when:
            dependency.attributes {
                it.attribute(attr1, 'foo')
                it.attribute(attr2, 123)
            }
    
            then:
            dependency.attributes.keySet() == [attr1, attr2] as Set
            dependency.attributes.getAttribute(attr1) == 'foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	// Add on extra attributes if provided.
    	if attrs != nil {
    		// Make bold if specified.
    		if attrs.Bold {
    			attr += ` style="bold,filled"`
    		}
    
    		// Add peripheries if specified.
    		if attrs.Peripheries != 0 {
    			attr += fmt.Sprintf(` peripheries=%d`, attrs.Peripheries)
    		}
    
    		// Add URL if specified. target="_blank" forces the link to open in a new tab.
    		if attrs.URL != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

    }
    
    LogicalResult ConvertNgrams(func::FuncOp func, llvm::StringRef api,
                                FuncAttr attr) {
      func.eraseBody();
      func.addEntryBlock();
      func->setAttr(kTFImplements, attr);
      OpBuilder builder(func.getBody());
      std::string custom_option_buffer;
      if (failed(CreateNgramsCustomOption(func, attr.getAttrs(),
                                          custom_option_buffer))) {
        return failure();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. src/log/slog/logger_test.go

    	for _, test := range []struct {
    		args []any
    		want []Attr
    	}{
    		{nil, nil},
    		{[]any{"a", 1}, []Attr{Int("a", 1)}},
    		{[]any{"a", 1, "b", "two"}, []Attr{Int("a", 1), String("b", "two")}},
    		{[]any{"a"}, []Attr{String(badKey, "a")}},
    		{[]any{"a", 1, "b"}, []Attr{Int("a", 1), String(badKey, "b")}},
    		{[]any{"a", 1, 2, 3}, []Attr{Int("a", 1), Int(badKey, 2), Int(badKey, 3)}},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/xml/DomUtil.java

                final Attr attr = (Attr) attrs.item(i);
                buf.append(' ');
                appendAttr(attr, buf);
            }
        }
    
        /**
         * {@link Attr}の文字列表現を追加します。
         *
         * @param attr
         *            属性。{@literal null}であってはいけません
         * @param buf
         *            文字列バッファ。{@literal null}であってはいけません
         */
        public static void appendAttr(final Attr attr, final StringBuilder buf) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top