Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for si4ref (0.15 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

            Collection<Ref> refs = getRemoteRefs(gitSpec, true, false);
            Set<VersionRef> versions = new HashSet<>();
            for (Ref ref : refs) {
                GitVersionRef gitRef = GitVersionRef.from(ref);
                versions.add(gitRef);
            }
            return versions;
        }
    
        @Override
        public VersionRef getDefaultBranch(VersionControlSpec spec) {
            GitVersionControlSpec gitSpec = cast(spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/ld.go

     */
    func addlibpath(ctxt *Link, srcref, objref, file, pkg, shlib string, fingerprint goobj.FingerprintType) *sym.Library {
    	if l := ctxt.LibraryByPkg[pkg]; l != nil {
    		return l
    	}
    
    	if ctxt.Debugvlog > 1 {
    		ctxt.Logf("addlibpath: srcref: %s objref: %s file: %s pkg: %s shlib: %s fingerprint: %x\n", srcref, objref, file, pkg, shlib, fingerprint)
    	}
    
    	l := &sym.Library{}
    	ctxt.LibraryByPkg[pkg] = l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/cmd/internal/goobj/objfile_test.go

    	s.SetSiz(12345)
    	s.SetAlign(8)
    	s.Write(w)
    
    	var r Reloc
    	r.SetOff(12)
    	r.SetSiz(4)
    	r.SetType(uint16(objabi.R_ADDR))
    	r.SetAdd(54321)
    	r.SetSym(SymRef{11, 22})
    	r.Write(w)
    
    	var a Aux
    	a.SetType(AuxFuncInfo)
    	a.SetSym(SymRef{33, 44})
    	a.Write(w)
    
    	w.wr.Flush()
    
    	// Read them back and check.
    	b := buf.Bytes()
    	var s2 Sym
    	s2.fromBytes(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:12 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/PersistentVcsMetadataCache.java

            @Override
            public void write(Encoder encoder, VersionRef value) throws Exception {
                GitVersionRef gitRef = (GitVersionRef) value;
                encoder.writeString(gitRef.getVersion());
                encoder.writeString(gitRef.getCanonicalId());
            }
    
            @Override
            public VersionRef read(Decoder decoder) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/refs.go

    	// see https://github.com/kubernetes/kubernetes/issues/106387
    	// For kube-openapi, allOf is only used for wrapping a Ref.
    	for _, allOf := range schema.AllOf {
    		if ref, isRef := refOf(&allOf); isRef {
    			return ref, isRef
    		}
    	}
    	return "", false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 17:23:50 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

            mlir::cast<NameLoc>(locations.front()).getName().strref();
        StringRef op_type =
            op_type_with_suffix.substr(0, op_type_with_suffix.size() - 1);
        new_unit.set_op_type(op_type.str());
    
        if (isa<NameLoc>(locations.back())) {
          StringRef name_loc_id =
              mlir::cast<NameLoc>(locations.back()).getName().strref();
          set_node_and_func_name(new_unit, name_loc_id);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/utils/utils.cc

      return *ops;
    }
    
    void CollectAllowedAttrs(CallOp src, NamedAttrList* attrs) {
      for (auto& attr : src->getAttrs()) {
        if (GetAllowedAttributes().contains(attr.getName().strref())) {
          attrs->append(attr);
        }
      }
    }
    
    // Adds `attrs` to all the operations between `begin` and `end` in the same
    // block. Does not include `end`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/add_functions_for_exported_names.cc

        for (NamedAttribute a : attrs) {
          if (a.getName().strref().starts_with("tf_saved_model.")) {
            f.removeArgAttr(i, a.getName());
          }
        }
      }
      for (int i = 0; i < f.getNumResults(); ++i) {
        for (NamedAttribute a : f.getResultAttrs(i)) {
          if (a.getName().strref().starts_with("tf_saved_model.")) {
            f.removeResultAttr(i, a.getName());
          }
        }
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. src/cmd/internal/goobj/funcinfo.go

    	return result
    }
    
    // InlTreeNode is the serialized form of FileInfo.InlTree.
    type InlTreeNode struct {
    	Parent   int32
    	File     CUFileIndex
    	Line     int32
    	Func     SymRef
    	ParentPC int32
    }
    
    func (inl *InlTreeNode) Write(w *bytes.Buffer) {
    	var b [4]byte
    	writeUint32 := func(x uint32) {
    		binary.LittleEndian.PutUint32(b[:], x)
    		w.Write(b[:])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/cc/quantization_unit_loc.cc

      auto callsite_loc = llvm::dyn_cast<CallSiteLoc>(attr);
    
      if (!mlir::isa<NameLoc>(callsite_loc.getCaller())) return false;
      StringRef caller_name =
          mlir::cast<NameLoc>(callsite_loc.getCaller()).getName().strref();
      return caller_name.starts_with(kQuantizationUnitPrefix) &&
             caller_name.ends_with(kQuantizationUnitSuffix);
    }
    
    std::optional<QuantizationUnitLoc::QuantizationUnit>
    FindQuantizationUnitFromLoc(Location loc) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top