Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 891 for ExtensionB (0.38 sec)

  1. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstylePluginTest.groovy

        }
    
        def "configures checkstyle extension"() {
            expect:
            CheckstyleExtension extension = project.extensions.checkstyle
            extension.configFile == project.file("config/checkstyle/checkstyle.xml")
            extension.configDirectory.get().getAsFile() == project.file("config/checkstyle")
            extension.config.inputFiles.singleFile == project.file("config/checkstyle/checkstyle.xml")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    	// TODO policies here will need to be different per-chain (service attached)
    	pre = append(pre, authzCustomBuilder.BuildHTTP(cls)...)
    	pre = extension.PopAppendHTTP(pre, wasm, extensions.PluginPhase_AUTHN)
    	pre = append(pre, authnBuilder.BuildHTTP(cls)...)
    	pre = extension.PopAppendHTTP(pre, wasm, extensions.PluginPhase_AUTHZ)
    	pre = append(pre, authzBuilder.BuildHTTP(cls)...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

            }
    
            project.extensions.create('myExt', MyExtension)
    
            task wrongValueTypeDsl {
                def myExt = project.extensions.getByType(MyExtension)
                doLast {
                    myExt.prop = 123
                }
            }
    
            task wrongRuntimeKeyType {
                def myExt = project.extensions.getByType(MyExtension)
                doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        }
    
        private static String getKey(Plugin plugin, boolean extension) {
            String version = ArtifactUtils.toSnapshotVersion(plugin.getVersion());
            return (extension ? "extension>" : "plugin>") + plugin.getGroupId() + ":" + plugin.getArtifactId() + ":"
                    + version;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/extauthz.go

    	"strings"
    
    	"github.com/davecgh/go-spew/spew"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	extauthzhttp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/ext_authz/v3"
    	extauthztcp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/ext_authz/v3"
    	envoy_type_matcher_v3 "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    	envoytypev3 "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.pb

    Shingo Omura <******@****.***> 1717022429 +0900
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/extensions.v1beta1.DaemonSet.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb

    Shingo Omura <******@****.***> 1717022429 +0900
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.Deployment.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

        }
    
        def "configures pmd extension"() {
            expect:
            PmdExtension extension = project.extensions.pmd
            extension.ruleSets == ["category/java/errorprone.xml"]
            extension.ruleSetConfig == null
            extension.ruleSetFiles.empty
            extension.reportsDir == project.file("build/reports/pmd")
            !extension.ignoreFailures
            extension.maxFailures.get() == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top