Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 125 for attr_name (0.14 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/checkdwarf/main.go

    	for {
    		e, err := rdr.Next()
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "%s: error reading DWARF: %v\n", exePath, err)
    			os.Exit(1)
    		}
    		if e == nil {
    			break
    		}
    		name, hasname := e.Val(dwarf.AttrName).(string)
    		if !hasname {
    			continue
    		}
    		if strings.HasSuffix(name, dieSuffix) {
    			// found
    			os.Exit(0)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

                return true;
            }
            return false;
        }
    
        public void addChildUrlRule(final String tagName, final String attrName) {
            if (StringUtil.isNotBlank(tagName) && StringUtil.isNotBlank(attrName)) {
                childUrlRuleMap.put(tagName, attrName);
            }
        }
    
        protected XPathAPI getXPathAPI() {
            XPathAPI cachedXPathAPI = xpathAPI.get();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

            reader.beginObject();
            while (reader.peek() != END_OBJECT) {
                String attrName = reader.nextName();
                if (reader.peek() == BOOLEAN) {
                    boolean attrValue = reader.nextBoolean();
                    attributes = attributesFactory.concat(attributes, Attribute.of(attrName, Boolean.class), attrValue);
                } else if (reader.peek() == NUMBER) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/mdo/writer.vm

                serializer.startTag(NAMESPACE, tagName).text(value).endTag(NAMESPACE, tagName);
            }
        }
    
        private void writeAttr(String attrName, String value, XmlSerializer serializer) throws IOException {
            if (value != null) {
                serializer.attribute(NAMESPACE, attrName, value);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/stmtlines_test.go

    	must(err)
    	rdr := dw.Reader()
    	rdr.Seek(0)
    	for {
    		e, err := rdr.Next()
    		must(err)
    		if e == nil {
    			break
    		}
    		if e.Tag != dwarf.TagCompileUnit {
    			continue
    		}
    		pkgname, _ := e.Val(dwarf.AttrName).(string)
    		if pkgname == "runtime" {
    			continue
    		}
    		if pkgname == "crypto/internal/nistec/fiat" {
    			continue // golang.org/issue/49372
    		}
    		if e.Val(dwarf.AttrStmtList) == nil {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_EXTATTR_SET_FILE       = 356 // { int extattr_set_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }
    	SYS_EXTATTR_GET_FILE       = 357 // { int extattr_get_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                Stream.of(attrUidNumber, attrGidNumber)
                        .forEach(attrName -> OptionalUtil.ofNullable(attributes.get(attrName)).filter(StringUtil::isNotBlank).ifPresent(s -> {
                            try {
                                DfTypeUtil.toLong(s);
                            } catch (final NumberFormatException e) {
                                consumer.accept(attrName);
                            }
                        }));
            } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. src/mdo/writer-stax.vm

                writeLocationTracking(locationTracker, tagName, serializer);
    #end
            }
        }
    
        private void writeAttr(String attrName, String value, XMLStreamWriter serializer) throws IOException, XMLStreamException {
            if (value != null) {
                serializer.writeAttribute(attrName, value);
            }
        }
    #if ( $locationTracking )
    
        /**
         * Method writeLocationTracking.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

        llvm::SmallVector<std::string, 4> attr_names(undefined_attrs.size());
        std::transform(undefined_attrs.begin(), undefined_attrs.end(),
                       attr_names.begin(),
                       [](StringAttr attr) { return attr.getValue().str(); });
        func.emitError(llvm::Twine("Undefined attributes are used: ",
                                   llvm::join(attr_names, ",")));
        return failure();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/dwtest/dwtest.go

    		ex.dies = append(ex.dies, entry)
    		if _, found := ex.idxByOffset[entry.Offset]; found {
    			return errors.New("DIE clash on offset")
    		}
    		ex.idxByOffset[entry.Offset] = idx
    		if name, ok := entry.Val(dwarf.AttrName).(string); ok {
    			ex.byname[name] = append(ex.byname[name], idx)
    		}
    		if len(nesting) > 0 {
    			parent := nesting[len(nesting)-1]
    			ex.kids[parent] = append(ex.kids[parent], idx)
    			ex.parent[idx] = parent
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top