Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 156 for predates (0.18 sec)

  1. src/cmd/compile/internal/types2/alias.go

    	targs   *TypeList      // type arguments, or nil
    	fromRHS Type           // RHS of type alias declaration; may be an alias
    	actual  Type           // actual (aliased) type; never an alias
    }
    
    // NewAlias creates a new Alias type with the given type name and rhs.
    // rhs must not be nil.
    func NewAlias(obj *TypeName, rhs Type) *Alias {
    	alias := (*Checker)(nil).newAlias(obj, rhs)
    	// Ensure that alias.actual is set (#65455).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

        def jarFile = tmpDir.file("mydir/jarfile.jar").createFile()
    
        def "creates manifest classpath with relative urls"() {
            when:
            def classpathFiles = [tmpDir.file('mydir/jar1.jar'), tmpDir.file('mydir/nested/jar2.jar')]
    
            then:
            ManifestUtil.createManifestClasspath(jarFile, classpathFiles) == "jar1.jar nested/jar2.jar";
        }
    
        def "creates manifest classpath with absolute urls"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/go/types/alias.go

    	targs   *TypeList      // type arguments, or nil
    	fromRHS Type           // RHS of type alias declaration; may be an alias
    	actual  Type           // actual (aliased) type; never an alias
    }
    
    // NewAlias creates a new Alias type with the given type name and rhs.
    // rhs must not be nil.
    func NewAlias(obj *TypeName, rhs Type) *Alias {
    	alias := (*Checker)(nil).newAlias(obj, rhs)
    	// Ensure that alias.actual is set (#65455).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

        protected final OutputEventRenderer renderer = makeOutputEventRenderer();
        protected final OutputEventListenerManager outputEventListenerManager = new OutputEventListenerManager(renderer);
    
        /**
         * Creates a set of logging services which are suitable to use globally in a process. In particular:
         *
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

         *
         * @see KaResolveExtensionFile
         */
        public abstract fun getTopLevelCallableNames(): Set<Name>
    
        /**
         * Creates the generated Kotlin source file text.
         *
         * The resulted String should be a valid Kotlin code.
         * It should be consistent with other declarations which are present in the [KaResolveExtensionFile], more specifically:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/crypto/des/cipher.go

    func (k KeySizeError) Error() string {
    	return "crypto/des: invalid key size " + strconv.Itoa(int(k))
    }
    
    // desCipher is an instance of DES encryption.
    type desCipher struct {
    	subkeys [16]uint64
    }
    
    // NewCipher creates and returns a new [cipher.Block].
    func NewCipher(key []byte) (cipher.Block, error) {
    	if len(key) != 8 {
    		return nil, KeySizeError(len(key))
    	}
    
    	c := new(desCipher)
    	c.generateSubkeys(key)
    	return c, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_waypoint.go

    	svcs map[host.Name]*model.Service,
    ) []*cluster.Cluster {
    	clusters := make([]*cluster.Cluster, 0)
    	// Creates "main_internal" cluster to route to the main internal listener.
    	// Creates "encap" cluster to route to the encap listener.
    	clusters = append(clusters, MainInternalCluster, EncapCluster)
    	// Creates per-VIP load balancing upstreams.
    	clusters = append(clusters, cb.buildWaypointInboundVIP(proxy, svcs)...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/internal/trace/raw/textwriter.go

    package raw
    
    import (
    	"fmt"
    	"io"
    
    	"internal/trace/version"
    )
    
    // TextWriter emits the text format of a trace.
    type TextWriter struct {
    	w io.Writer
    	v version.Version
    }
    
    // NewTextWriter creates a new write for the trace text format.
    func NewTextWriter(w io.Writer, v version.Version) (*TextWriter, error) {
    	_, err := fmt.Fprintf(w, "Trace Go1.%d\n", v)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 917 bytes
    - Viewed (0)
  9. src/cmd/internal/telemetry/telemetry.go

    	return counter.NewStack(name, depth)
    }
    
    // CountFlags creates a counter for every flag that is set
    // and increments the counter. The name of the counter is
    // the concatenation of prefix and the flag name.
    func CountFlags(prefix string, flagSet flag.FlagSet) {
    	counter.CountFlags(prefix, flagSet)
    }
    
    // CountFlagValue creates a counter for the flag value
    // if it is set and increments the counter. The name of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderFactoryTest.groovy

    import spock.lang.Specification
    
    class ClientSidePayloadClassLoaderFactoryTest extends Specification {
        def registry = new ClientSidePayloadClassLoaderFactory(Mock(PayloadClassLoaderFactory))
    
        def "creates ClassLoader for classpath"() {
            def url1 = new URL("http://localhost/file1.jar")
            def url2 = new URL("http://localhost/file2.jar")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top