Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for GetData (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    if (Features.buildConsumer(request.getUserProperties())) {
                        request.getRepositorySession()
                                .getData()
                                .set(ModelTransformerContext.KEY, transformerContextBuilder.build());
                    }
    
                    return results;
                } finally {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // types are static.
        SmallVector<DenseIntElementsAttr, 4> indices;
        indices.reserve(op.getN());
        for (auto it : llvm::zip(op.getIndices(), op.getData())) {
          Value index = std::get<0>(it);
          Value data = std::get<1>(it);
    
          DenseIntElementsAttr index_attr;
          if (!matchPattern(index, m_Constant(&index_attr))) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            eventSpyDispatcher = container.lookup(EventSpyDispatcher.class);
    
            DefaultEventSpyContext eventSpyContext = new DefaultEventSpyContext();
            Map<String, Object> data = eventSpyContext.getData();
            data.put("plexus", container);
            data.put("workingDirectory", cliRequest.workingDirectory);
            data.put("systemProperties", cliRequest.systemProperties);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	sb.AddBytes(make([]byte, 8))
    	r, _ := sb.AddRel(objabi.R_ADDR)
    	r.SetSym(extsym.Sym())
    	r.SetSiz(uint8(ctxt.Arch.PtrSize))
    	// TODO: maybe this could be
    	// sb.SetSize(0)
    	// sb.SetData(nil)
    	// sb.AddAddr(ctxt.Arch, extsym.Sym())
    	// If the size is not 0 to begin with, I don't think the added 8 bytes
    	// of zeros are necessary.
    }
    
    // Xcoffadddynrel adds a dynamic relocation in a XCOFF file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    	o4 := uint32(OP_BCTR)      // bctr
    	ctxt.Arch.ByteOrder.PutUint32(P, o1)
    	ctxt.Arch.ByteOrder.PutUint32(P[4:], o2)
    	ctxt.Arch.ByteOrder.PutUint32(P[8:], o3)
    	ctxt.Arch.ByteOrder.PutUint32(P[12:], o4)
    	tramp.SetData(P)
    }
    
    // Unpack a pair of 32 bit instruction words from
    // a 64 bit relocation into instN and instN+1 in endian order.
    func unpackInstPair(target *ld.Target, r int64) (uint32, uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    			sect.Align = int32(ctxt.Arch.Alignment)
    			sect.Length = uint64(len(z.compressed))
    			sect.Compressed = true
    			newSym := ldr.MakeSymbolBuilder(compressedSegName)
    			ldr.SetAttrReachable(s, true)
    			newSym.SetData(z.compressed)
    			newSym.SetSize(int64(len(z.compressed)))
    			ldr.SetSymSect(newSym.Sym(), sect)
    			ds := dwarfSecInfo{syms: []loader.Sym{newSym.Sym()}}
    			newDwarfp = append(newDwarfp, ds)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    			// The decodetype_* functions in decodetype.go need access to
    			// the type data.
    			sname := l.SymName(s)
    			if strings.HasPrefix(sname, "type:") && !strings.HasPrefix(sname, "type:.") {
    				su.SetData(readelfsymboldata(ctxt, f, &elfsym))
    			}
    		}
    
    		if symname != elfsym.Name {
    			l.SetSymExtname(s, elfsym.Name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top