Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 182 for VerifierT (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

    import org.gradle.api.internal.artifacts.verification.verifier.DependencyVerificationConfiguration;
    import org.gradle.api.internal.artifacts.verification.verifier.DependencyVerifier;
    import org.gradle.api.internal.artifacts.verification.verifier.DependencyVerifierBuilder;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.invocation.Gradle;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/CrossBuildInMemoryCachingScriptClassCache.java

            Object target,
            ScriptSource source,
            ClassLoaderScope targetScope,
            CompileOperation<M> operation,
            Class<T> scriptBaseClass,
            Action<? super ClassNode> verifier,
            ScriptClassCompiler delegate
        ) {
            ScriptCacheKey key = new ScriptCacheKey(source.getClassName(), targetScope.getExportClassLoader(), operation.getId());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 09 15:05:17 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. operator/cmd/mesh/verify.go

    			client, kubeClient, err := KubernetesClients(client, l)
    			if err != nil {
    				return err
    			}
    
    			installationVerifier, err := verifier.NewStatusVerifier(client, kubeClient,
    				ctx.IstioNamespace(), manifestsPath, filenames, opts, verifier.WithLogger(l))
    			if err != nil {
    				return err
    			}
    			if formatting.IstioctlColorDefault(c.OutOrStdout()) {
    				installationVerifier.Colorize()
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/DefaultScriptCompilerFactory.java

                CompiledScript<T, M> compiledScript = scriptClassCompiler.compile(source, scriptType, target, targetScope, extractingTransformer, verifier);
                return scriptRunnerFactory.create(compiledScript, source, targetScope.getExportClassLoader());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 09 15:05:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/BuildScopeInMemoryCachingScriptClassCompiler.java

        }
    
        @Override
        public <T extends Script, M> CompiledScript<T, M> compile(ScriptSource source, Class<T> scriptBaseClass, Object target, ClassLoaderScope targetScope, CompileOperation<M> operation, Action<? super ClassNode> verifier) {
            ScriptCacheKey key = new ScriptCacheKey(source.getClassName(), targetScope.getExportClassLoader(), operation.getId());
            CompiledScript<T, M> compiledScript = Cast.uncheckedCast(cachedCompiledScripts.get(key));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 16:35:08 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    			continue
    		}
    
    		if ok {
    			return user, ok, err
    		}
    	}
    	return nil, false, utilerrors.NewAggregate(errlist)
    }
    
    // Verifier implements request.Authenticator by verifying a client cert on the request, then delegating to the wrapped auth
    type Verifier struct {
    	verifyOptionsFn VerifyOptionFunc
    	auth            authenticator.Request
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    type QueryParamVerifier struct {
    	finder        CRDFinder
    	openAPIGetter discovery.OpenAPISchemaInterface
    	queryParam    VerifiableQueryParam
    }
    
    // Verifier is the generic verifier interface used for testing QueryParamVerifier
    type Verifier interface {
    	HasSupport(gvk schema.GroupVersionKind) error
    }
    
    // VerifiableQueryParam is a query parameter who's enablement on the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    		}
    		if opts.Roots != nil && opts.Roots.systemPool {
    			platformChains, err := c.systemVerify(&opts)
    			// If the platform verifier succeeded, or there are no additional
    			// roots, return the platform verifier result. Otherwise, continue
    			// with the Go verifier.
    			if err == nil || opts.Roots.len() == 0 {
    				return platformChains, err
    			}
    		}
    	}
    
    	if opts.Roots == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/tests/testPlugin.sample.conf

    executable: gradle
    execution-subdirectory: url-verifier-plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 75 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/kotlin/include-plugin-build/settings.gradle.kts

    // 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
    - 142 bytes
    - Viewed (0)
Back to top