Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 182 for VerifierT (0.36 sec)

  1. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/groovy/include-plugin-build/build.gradle

    plugins {
        id 'org.myorg.url-verifier'         // <1>
    }
    
    verification {
        url = 'https://www.google.com/'     // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 124 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/groovy/include-plugin-build/settings.gradle

    // tag::include-build[]
    pluginManagement {
        includeBuild '../url-verifier-plugin'
    }
    // end::include-build[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 141 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/kotlin/include-plugin-build/build.gradle.kts

    plugins {
        id("org.myorg.url-verifier")        // <1>
    }
    
    verification {
        url = "https://www.google.com/"  // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 121 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/tests/sanityCheck.sample.conf

    commands: [{
        execution-subdirectory: include-plugin-build
        executable: gradle
        args: tasks
    }, {
        execution-subdirectory: url-verifier-plugin
        executable: gradle
        args: tasks
    }, {
        executable: gradle
        args: tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 240 bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3.go

    	"k8s.io/client-go/openapi"
    	"k8s.io/client-go/openapi3"
    	"k8s.io/kube-openapi/pkg/spec3"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    var _ Verifier = &queryParamVerifierV3{}
    
    // NewQueryParamVerifierV3 returns a pointer to the created queryParamVerifier3 struct,
    // which implements the Verifier interface. The caching characteristics of the
    // OpenAPI V3 specs are determined by the passed oapiClient. For memory caching, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/groovy/url-verifier-plugin/src/functionalTest/groovy/org/myorg/UrlVerifierPluginFunctionalTest.groovy

        @TempDir File testProjectDir
        File buildFile
    
        def setup() {
            buildFile = new File(testProjectDir, 'build.gradle')
            buildFile << """
                plugins {
                    id 'org.myorg.url-verifier'
                }
            """
        }
    
        def "can successfully configure URL through extension and verify it"() {
            buildFile << """
                verification {
                    url = 'https://www.google.com/'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/groovy/url-verifier-plugin/settings.gradle

    rootProject.name = 'url-verifier-plugin'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/kotlin/url-verifier-plugin/settings.gradle.kts

    rootProject.name = "url-verifier-plugin"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  9. src/crypto/x509/root.go

    		systemRoots = nil
    	}
    }
    
    var x509usefallbackroots = godebug.New("x509usefallbackroots")
    
    // SetFallbackRoots sets the roots to use during certificate verification, if no
    // custom roots are specified and a platform verifier or a system certificate
    // pool is not available (for instance in a container which does not have a root
    // certificate bundle). SetFallbackRoots will panic if roots is nil.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/BuildOperationBackedScriptCompilationHandler.java

            buildOperationRunner.run(new RunnableBuildOperation() {
                @Override
                public void run(BuildOperationContext context) {
                    delegate.compileToDir(source, classLoader, classesDir, metadataDir, transformer, scriptBaseClass, verifier);
                    context.setResult(RESULT);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top