Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 5,232 for Example (0.17 sec)

  1. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingWithPluginManagementSpec.groovy

            pluginBuilder.addPluginWithPrintlnTask(taskName, message, "org.example.plugin")
            if (repository instanceof MavenRepository) {
                pluginBuilder.publishAs("org.example.plugin:plugin:1.0", repository, executer)
            } else if (repository instanceof IvyRepository) {
                pluginBuilder.publishAs("org.example.plugin:plugin:1.0", repository, executer)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authorization/cel/metrics_test.go

            	apiserver_authorization_match_condition_evaluation_seconds_bucket{name="wh1.example.com",type="Webhook",le="0.01"} 0
            	apiserver_authorization_match_condition_evaluation_seconds_bucket{name="wh1.example.com",type="Webhook",le="0.025"} 0
            	apiserver_authorization_match_condition_evaluation_seconds_bucket{name="wh1.example.com",type="Webhook",le="0.1"} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/test/groovy/com/example/JavaConventionPluginTest.groovy

            new File(testProjectDir, 'src/main/java/com/example').mkdirs()
            new File(testProjectDir, 'src/main/java/com/example/Foo.java') << """
                package com.example;
    
                public class Foo {
                    @Deprecated
                    public void deprecatedMethod() {}
                }
            """
    
            new File(testProjectDir, 'src/main/java/com/example/Bar.java') << """
                package com.example;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

            bnd('Import-Package': 'com.example.util.*')
        }
    }
    """
    
            file("src/main/java/com/example/Example.java") << """
    package com.example;
    
    import com.example.util.MyUtil;
    
    public class Example {
        public boolean testIsEmpty(String someString) {
            return MyUtil.myIsEmpty(someString);
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    go build example.net/need117
    
    grep '^## explicit; go 1.13$' vendor/modules.txt
    ! go build example.net/bad114
    stderr '^vendor[/\\]example\.net[/\\]bad114[/\\]bad114.go:15:2: duplicate method .?Y.?( .*)?$'
    
    -- go.mod --
    module example.net/m
    
    go 1.16
    
    require (
    	example.net/bad114 v0.1.0
    	example.net/need117 v0.1.0
    )
    
    replace (
    	example.net/bad114 v0.1.0 => ./bad114
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_test_pkgselect.txt

    env GOEXPERIMENT=coverageredesign
    
    # Baseline run.
    go test -cover example/foo
    stdout 'coverage: 50.0% of statements$'
    
    # Coverage percentage output should mention -coverpkg selection.
    go test -coverpkg=example/foo example/foo
    stdout 'coverage: 50.0% of statements in example/foo'
    
    # Try to ask for coverage of a package that doesn't exist.
    go test -coverpkg nonexistent example/bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/test/kotlin/com/example/JavaConventionPluginTest.kt

            testProjectDir.newFolder("src", "main", "java", "com", "example")
            testProjectDir.newFile("src/main/java/com/example/Foo.java").writeText("""
                package com.example;
    
                public class Foo {
                    @Deprecated
                    public void deprecatedMethod() {}
                }
            """)
    
            testProjectDir.newFile("src/main/java/com/example/Bar.java").writeText("""
                package com.example;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_version_tooold.txt

    env TESTGO_VERSION=go1.22.0
    
    ! go mod tidy -go=1.21
    stderr '^go: example.net/a@v0.1.0 requires go@1.22, but 1.21 is requested$'
    
    -- go.mod --
    module example
    
    go 1.22
    
    require example.net/a v0.1.0
    
    replace example.net/a v0.1.0 => ./a
    -- example.go --
    package example
    
    import "example.net/a"
    -- a/go.mod --
    module example.net/a
    
    go 1.22
    -- a/a.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 00:53:46 UTC 2023
    - 358 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    )
    
    require example.net/lazy v0.1.0
    -- implicit.go --
    package implicit
    
    import _ "example.net/lazy"
    -- lazy/go.mod --
    // Module lazy requires example.com/retract/incompatible v1.0.0.
    //
    // When viewed from the outside it also has a transitive dependency
    // on v2.0.0+incompatible, but in lazy mode that transitive dependency
    // is pruned out.
    module example.net/lazy
    
    go 1.17
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    exclude example.com/retract/incompatible v2.0.0+incompatible
    
    require (
    	example.com/retract/incompatible v1.0.0
    	example.net/requireincompatible v0.1.0
    )
    -- lazy/lazy.go --
    package lazy
    -- lazy/unimported/unimported.go --
    package unimported
    
    import _ "example.com/retract/incompatible"
    -- requireincompatible/go.mod --
    module example.net/requireincompatible
    
    go 1.15
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top