Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,967 for topo (0.04 sec)

  1. src/cmd/internal/obj/objfile.go

    	// Hashes
    	h.Offsets[goobj.BlkHash64] = w.Offset()
    	for _, s := range ctxt.hashed64defs {
    		w.Hash64(s)
    	}
    	h.Offsets[goobj.BlkHash] = w.Offset()
    	for _, s := range ctxt.hasheddefs {
    		w.Hash(s)
    	}
    	// TODO: hashedrefs unused/unsupported for now
    
    	// Reloc indexes
    	h.Offsets[goobj.BlkRelocIdx] = w.Offset()
    	nreloc := uint32(0)
    	lists := [][]*LSym{ctxt.defs, ctxt.hashed64defs, ctxt.hasheddefs, ctxt.nonpkgdefs}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Implementations of {@code Futures.transform*}. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings("nullness") // TODO(b/147136275): Remove once our checker understands & and |.
    abstract class AbstractTransformFuture<
            I extends @Nullable Object, O extends @Nullable Object, F, T extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. guava-gwt/pom.xml

                        <contains text="@GwtCompatible"/>
                      </fileset>
                    </copy>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/arm/asm.go

    			return true
    		}
    		addpltsym(target, ldr, syms, targ)
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocSym(rIdx, syms.PLT)
    		su.SetRelocAdd(rIdx, int64(braddoff(int32(r.Add()), ldr.SymPlt(targ)/4))) // TODO: don't use r.Add for instruction bytes (issue 19811)
    		return true
    
    	case objabi.R_ADDR:
    		if ldr.SymType(s) != sym.SDATA {
    			break
    		}
    		if target.IsElf() {
    			ld.Adddynsym(ldr, target, syms, targ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

        implements SortedSet<E>, SortedIterable<E> {
      // TODO(cpovirk): split into ImmutableSortedSet/ForwardingImmutableSortedSet?
    
      // In the non-emulated source, this is in ImmutableSortedSetFauxverideShim,
      // which overrides ImmutableSet & which ImmutableSortedSet extends.
      // It is necessary here because otherwise the builder() method
      // would be inherited from the emulated ImmutableSet.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

      static final Integer NODE_NOT_IN_GRAPH = 1000;
    
      // TODO(user): Consider separating Strings that we've defined here to capture
      // identifiable substrings of expected error messages, from Strings that we've defined
      // here to provide error messages.
      // TODO(user): Some Strings used in the subclasses can be added as static Strings
      // here too.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/MavenProjectBuilder.java

        // TODO maven-site-plugin -- not used by the plugin directly, but used by Doxia Integration Tool & MPIR
        // see DOXIASITETOOLS-167 & MPIR-349
        MavenProject build(File pom, ArtifactRepository localRepository, ProfileManager profileManager)
                throws ProjectBuildingException;
    
        // TODO remote-resources-plugin
        MavenProject buildFromRepository(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadata.java

    import org.apache.maven.artifact.repository.metadata.RepositoryMetadataStoreException;
    
    /**
     * Contains metadata about an artifact, and methods to retrieve/store it from an artifact repository.
     * TODO merge with artifactmetadatasource
     * TODO retrieval exception not appropriate for store
     *
     */
    public interface ArtifactMetadata {
        /**
         * Whether this metadata should be stored alongside the artifact.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/cmd/fix/fix.go

    			return true
    		}
    	}
    	return false
    }
    
    // isTopName reports whether n is a top-level unresolved identifier with the given name.
    func isTopName(n ast.Expr, name string) bool {
    	id, ok := n.(*ast.Ident)
    	return ok && id.Name == name && id.Obj == nil
    }
    
    // renameTop renames all references to the top-level name old.
    // It reports whether it makes any changes.
    func renameTop(f *ast.File, old, new string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/DataType.kt

        interface StringDataType : ConstantType<String>
        interface BooleanDataType : ConstantType<Boolean>
    
        // TODO: implement nulls?
        interface NullType : DataType
    
        interface UnitType : DataType
    
        // TODO: `Any` type?
        // TODO: Support subtyping of some sort in the schema rather than via reflection?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top