Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 5,232 for Example (0.17 sec)

  1. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/plugin-notations.toml

    [plugins]
    simple = "org.example:1.0"
    without-version = { id = "org.example" }
    with-id = { id = "org.example", version = "1.1"}
    with-ref = { id = "org.example", version.ref = "ref"}
    with-rich1 = { id = "org.example", version = { prefer = "1.0" } }
    with-rich2 = { id = "org.example", version.prefer = "1.0" }
    with-rich3 = { id = "org.example", version.require = "1.0" }
    with-rich4 = { id = "org.example", version.strictly = "1.0" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 668 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_errors.txt

    go get
    cmp ../go.mod.syntax-d ../go.mod
    
    
    -- go.mod --
    module example.com/m
    
    go 1.16
    
    replace example.com/badimport v0.1.0 => ./badimport
    -- go.mod.syntax-d --
    module example.com/m
    
    go 1.16
    
    replace example.com/badimport v0.1.0 => ./badimport
    
    require example.com/badimport v0.1.0
    -- m.go --
    package m
    
    import _ "example.com/badimport"
    -- importsyntax/importsyntax.go --
    package importsyntax
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// that cannot be indexed.
    	//
    	// Example:
    	//  var x = 1
    	//  var y = x[1]
    	NonIndexableOperand
    
    	// InvalidIndex occurs when an index argument is not of integer type,
    	// negative, or out-of-bounds.
    	//
    	// Example:
    	//  var s = [...]int{1,2,3}
    	//  var x = s[5]
    	//
    	// Example:
    	//  var s = []int{1,2,3}
    	//  var _ = s[-1]
    	//
    	// Example:
    	//  var s = []int{1,2,3}
    	//  var i string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_replace_import.txt

    -- go.mod --
    module example.com/m
    
    replace (
    	example.com/a => ./a
    	example.com/a/b => ./b
    )
    
    replace (
    	example.com/x => ./x
    	example.com/x/v3 => ./v3
    )
    
    replace (
    	example.com/y/z/w => ./w
    	example.com/y => ./y
    )
    
    replace (
    	example.com/v v1.11.0 => ./v11
    	example.com/v v1.12.0 => ./v12
    	example.com/v => ./v
    )
    
    replace (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. src/crypto/x509/name_constraints_test.go

    	localPart, domain string
    }{
    	{"foo@example.com", "foo", "example.com"},
    	{"@example.com", "", ""},
    	{"\"@example.com", "", ""},
    	{"\"\"@example.com", "", "example.com"},
    	{"\"a\"@example.com", "a", "example.com"},
    	{"\"\\a\"@example.com", "a", "example.com"},
    	{"a\"@example.com", "", ""},
    	{"foo..bar@example.com", "", ""},
    	{".foo.bar@example.com", "", ""},
    	{"foo.bar.@example.com", "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/api/plugins/catalog/internal/plugin-notations.toml

    [plugins]
    simple = "org.example:1.0"
    with-id = { id = "org.example", version = "1.1"}
    with-ref = { id = "org.example", version.ref = "ref"}
    with-rich1 = { id = "org.example", version = { prefer = "1.0" } }
    with-rich2 = { id = "org.example", version.prefer = "1.0" }
    with-rich3 = { id = "org.example", version.require = "1.0" }
    with-rich4 = { id = "org.example", version.strictly = "1.0" }
    with-rich5 = { id = "org.example", version = { rejectAll = true } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 627 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_direct_work.txt

    # In this test, the workspace contains modules example.com/a and
    # example.com/b. Module example.com/a has a direct requirement
    # on rsc.io/sampler, and an indirect requirement on golang.org/x/text
    # through rsc.io/isampler. Module example.com/b has a direct
    # requirement on example.com/c which is incorrectly marked as indirect
    # in module example.com/b's go.mod file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                                        unsubscribe = "users-unsubscribe@lists.example.org"
                                        post = "users@lists.example.org"
                                        archive = "http://lists.example.org/users/"
                                        otherArchives = ["http://archive.org/", "http://backup.example.org/"]
                                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat.txt

    require (
    	example.com/version v1.1.0
    	example.net/lazy v0.1.0
    )
    -- m_all.txt --
    example.com/m
    example.com/version v1.1.0
    example.net/lazy v0.1.0 => ./lazy
    -- compatible.go --
    package compatible
    
    import (
    	_ "example.com/version"
    	_ "example.net/lazy"
    )
    -- lazy/go.mod --
    // Module lazy requires example.com/version v1.0.1.
    //
    // However, since this module is lazy, its dependents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	barSecond := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "second", Name: "bar"}}
    	fooSecond := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "second", Name: "foo"}}
    	bazSecond := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "second", Name: "baz"}}
    	barfooThird := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "third", Name: "barfoo"}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top