Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for attr_ (0.06 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      return absl::OkStatus();
    }
    
    Status Encapsulator::GetFunctionNameAttr(Node const* node, string* attr) const {
      AttrSlice attrs = node->attrs();
      attr->clear();
      for (const auto& node_attr : attrs) {
        if (node_attr.first == group_attribute_) {
          TF_RETURN_IF_ERROR(AttrValueHasType(node_attr.second, "string"));
          *attr = node_attr.second.s();
          break;
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    type AttrTest struct {
    	Int   int     `xml:",attr"`
    	Named int     `xml:"int,attr"`
    	Float float64 `xml:",attr"`
    	Uint8 uint8   `xml:",attr"`
    	Bool  bool    `xml:",attr"`
    	Str   string  `xml:",attr"`
    	Bytes []byte  `xml:",attr"`
    }
    
    type AttrsTest struct {
    	Attrs []Attr  `xml:",any,attr"`
    	Int   int     `xml:",attr"`
    	Named int     `xml:"int,attr"`
    	Float float64 `xml:",attr"`
    	Uint8 uint8   `xml:",attr"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                final Attributes attrs = srcrslt.getAttributes();
    
                //get group attr
                final Attribute attr = attrs.get(fessConfig.getLdapMemberofAttribute());
                if (attr == null) {
                    continue;
                }
    
                for (int i = 0; i < attr.size(); i++) {
                    final Object attrValue = attr.get(i);
                    if (attrValue != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. src/html/template/escape_test.go

    			`html/template:z: "=" in unquoted attr: "onclick="`,
    		},
    		{
    			`<input type=button value= onclick=>`,
    			`html/template:z: "=" in unquoted attr: "onclick="`,
    		},
    		{
    			`<input type=button value= 1+1=2>`,
    			`html/template:z: "=" in unquoted attr: "1+1=2"`,
    		},
    		{
    			"<a class=`foo>",
    			"html/template:z: \"`\" in unquoted attr: \"`foo\"",
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            file("utils/build.gradle") << '''
                def attr1 = Attribute.of('custom', String)
                version = '1.0'
                configurations {
                    one {
                        attributes.attribute(attr1, 'magnificent')
                    }
                    two {
                        attributes.attribute(attr1, 'bazinga')
                    }
                }
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  6. src/debug/elf/file_test.go

    						{Attr: dwarf.AttrProducer, Val: "GNU C 4.4.1", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLanguage, Val: int64(1), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrName, Val: "t.c", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrCompDir, Val: "/tmp", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLowpc, Val: uint64(0x0), Class: dwarf.ClassAddress},
    						{Attr: dwarf.AttrHighpc, Val: uint64(0x5), Class: dwarf.ClassAddress},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  7. tensorflow/c/kernels_test.cc

        const ::tensorflow::AttrValue& value = node_def.attr().at("Attr");
        EXPECT_TRUE(value.value_case() == ::tensorflow::AttrValue::ValueCase::kI);
        EXPECT_EQ(value.i(), 1234);
        TF_DeleteBuffer(node_def_buf);
        TF_DeleteStatus(status);
        return static_cast<void*>(s);
      };
    
      REGISTER_OP("TestKernelAttrGetNodeDef")
          .Attr("Attr: int")
          .SetShapeFn(tensorflow::shape_inference::UnknownShape);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

                                    std::vector<FunctionDefHelper::Node> nodes) {
      for (auto& n : nodes) {
        if (n.attr.empty()) {
          n.attr = {{"T", DT_FLOAT}};
        }
      }
      *g = FunctionDefHelper::Define(
          // Arg defs
          {"x: float", "dy: float"},
          // Ret val defs
          {"dx: float"},
          // Attr defs
          {},
          // Nodes
          nodes);
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetFileAttributes(name *uint16) (attrs uint32, err error) {
    	r0, _, e1 := Syscall(procGetFileAttributesW.Addr(), 1, uintptr(unsafe.Pointer(name)), 0, 0)
    	attrs = uint32(r0)
    	if attrs == INVALID_FILE_ATTRIBUTES {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis_test.cc

          root.WithOpName("capture_enter_outer"), captured, "outer_loop",
          ops::internal::Enter::Attrs().IsConstant(true));
      Output capture_enter_inner = ops::internal::Enter(
          root.WithOpName("capture_enter_inner"), capture_enter_outer, "inner_loop",
          ops::internal::Enter::Attrs().IsConstant(true));
      Output mul0 = ops::Mul(root.WithOpName("mul0"), div1_inner.induction_var,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top