Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 182 for VerifierT (0.46 sec)

  1. Makefile

    	@echo "Installing stringer" && go install -v golang.org/x/tools/cmd/stringer@latest
    
    crosscompile: ## cross compile minio
    	@(env bash $(PWD)/buildscripts/cross-compile.sh)
    
    verifiers: lint check-gen
    
    check-gen: ## check for updated autogenerated files
    	@go generate ./... >/dev/null
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. docs/fr/docs/tutorial/path-params.md

    
    ```Python hl_lines="7"
    {!../../../docs_src/path_params/tutorial002.py!}
    ```
    
    Ici, `item_id` est déclaré comme `int`.
    
    !!! check "vérifier"
        Ceci vous permettra d'obtenir des fonctionnalités de l'éditeur dans votre fonction, telles
        que des vérifications d'erreur, de l'auto-complétion, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/BuildTreeDefinedKeys.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.verification.signatures;
    
    import org.gradle.api.internal.artifacts.verification.verifier.DependencyVerificationConfiguration;
    import org.gradle.security.internal.KeyringFilePublicKeyService;
    import org.gradle.security.internal.PublicKeyService;
    import org.gradle.security.internal.PublicKeyServiceChain;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 13:00:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Address.kt

     * explicitly requested), this also includes that proxy information. For secure connections the
     * address also includes the SSL socket factory, hostname verifier, and certificate pinner.
     *
     * HTTP requests that share the same [Address] may also share the same [Connection].
     */
    class Address(
      uriHost: String,
      uriPort: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultObjectConfigurationAction.java

    import org.gradle.internal.deprecation.Documentation;
    import org.gradle.internal.resource.TextResource;
    import org.gradle.internal.resource.TextUriResourceLoader;
    import org.gradle.internal.verifier.HttpRedirectVerifier;
    import org.gradle.internal.verifier.HttpRedirectVerifierFactory;
    import org.gradle.util.internal.GUtil;
    
    import java.net.URI;
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilderTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.verification.verifier
    
    
    import org.gradle.api.internal.artifacts.DefaultModuleVersionIdentifier
    import org.gradle.api.internal.artifacts.verification.exceptions.ComponentVerificationException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/verify_options.go

    // It will return a nil function if you pass an empty CA file.
    func NewStaticVerifierFromFile(clientCA string) (VerifyOptionFunc, error) {
    	if len(clientCA) == 0 {
    		return nil, nil
    	}
    
    	// Wrap with an x509 verifier
    	var err error
    	opts := DefaultVerifyOptions()
    	opts.Roots, err = cert.NewPool(clientCA)
    	if err != nil {
    		return nil, fmt.Errorf("error loading certs from  %s: %v", clientCA, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 07 19:48:24 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/groovy/url-verifier-plugin/build.gradle

    // tag::source-set-config[]
    gradlePlugin {
        testSourceSets(sourceSets.functionalTest)
    }
    // end::source-set-config[]
    
    gradlePlugin {
        plugins {
            urlVerifierPlugin {
                id = 'org.myorg.url-verifier'
                implementationClass = 'org.myorg.UrlVerifierPlugin'
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/crypto/tls/example_test.go

    	}
    
    	// Server side configuration.
    	_ = &tls.Config{
    		// Require client certificates (or VerifyConnection will run anyway and
    		// panic accessing cs.PeerCertificates[0]) but don't verify them with the
    		// default verifier. This will not disable VerifyConnection.
    		ClientAuth: tls.RequireAnyClientCert,
    		VerifyConnection: func(cs tls.ConnectionState) error {
    			opts := x509.VerifyOptions{
    				DNSName:       cs.ServerName,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.cc

    #include "llvm/Support/SourceMgr.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "pybind11/pybind11.h"  // from @pybind11
    #include "pybind11/stl.h"  // from @pybind11
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 08:41:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top