Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for keynote (0.28 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/dump.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package relnote
    
    import (
    	"fmt"
    	"strings"
    
    	md "rsc.io/markdown"
    )
    
    // DumpMarkdown writes the internal structure of a markdown
    // document to standard output.
    // It is intended for debugging.
    func DumpMarkdown(d *md.Document) {
    	dumpBlocks(d.Blocks, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. test/alias3.dir/c.go

    func main() {
    	var _ float64 = b.F(0)
    	var _ a.Rune = int32(0)
    
    	// embedded types can have different names but the same types
    	var s a.S
    	s.Int = 1
    	s.IntAlias = s.Int
    	s.IntAlias2 = s.Int
    
    	// aliases denote identical types across packages
    	var c a.Context = b.C
    	var _ b.MyContext = c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 05:55:53 UTC 2017
    - 490 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleInput.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to the getter for a property on a {@link RuleSource} to denote that the property defines an implicit input for all rules defined by the rule source.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @Incubating
    public @interface RuleInput {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleTarget.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to the getter for a property on a {@link RuleSource} to denote that the property defines the target for the rule source.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @Incubating
    public @interface RuleTarget {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

            <surefireVersion>2.19.1</surefireVersion>
            <hamcrestVersion>1.3</hamcrestVersion>
            <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
            <arguments />
            <gpg.keyname>67893CC4</gpg.keyname>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>org.hamcrest</groupId>
                <artifactId>hamcrest-core</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  6. doc/next/9-todo.md

    -->
    
    <!-- Items that don't need to be mentioned in Go 1.23 release notes but are picked up by relnote todo.
    
    CL 458895 - an x/playground fix that mentioned an accepted cmd/go proposal go.dev/issue/40728 in Go 1.16 milestone...
    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

        </distributionManagement>
    
        <properties>
            <jdkVersion>1.5</jdkVersion>
            <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
            <arguments />
            <gpg.keyname>67893CC4</gpg.keyname>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>org.hamcrest</groupId>
                <artifactId>hamcrest-core</artifactId>
                <version>1.3</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/form-validator/sanitize.js

    "")}),b},escape:function(b,c){var d=c.valAttr("is-escaped"),e={"<":"__%AMP%__lt;",">":"__%AMP%__gt;","&":"__%AMP%__amp;","'":"__%AMP%__#8217;",'"':"__%AMP%__quot;"};return"yes"===d?b:(c.valAttr("is-escaped","yes"),c.one("keyup",function(a){9!==a.keyCode&&c.valAttr("is-escaped","no")}),a.each(e,function(a,c){b=b.replace(new RegExp(a,"g"),c)}),b.replace(new RegExp("__%AMP%__","g"),"&"))}},e=function(b,e,f){e||(e=a("form")),e.each||(e=a(e));var g=function(){var b=a(this),c=b.val();a.split(b.attr("d...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java

                return "raw";
            }
    
            @Override
            public Class<ModelData> getType() {
                return ModelData.class;
            }
        };
    
        /**
         * The tag used to denote an effective dependency management section from an imported model.
         */
        ModelCacheTag<DependencyManagement> IMPORT = new ModelCacheTag<DependencyManagement>() {
    
            @Override
            public String getName() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 13 13:02:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    // additional known formatting functions or methods. (This legacy flag
    // is rarely used due to the automatic inference described above.)
    //
    // If the name contains a period, it must denote a specific function
    // using one of the following forms:
    //
    //	dir/pkg.Function
    //	dir/pkg.Type.Method
    //	(*dir/pkg.Type).Method
    //
    // Otherwise the name is interpreted as a case-insensitive unqualified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top