Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,069 for simply (0.14 sec)

  1. tests/integration/security/fuzz/fuzzers/jwt_tool/jwtconf.ini

    [crypto]
    # The sample RSA public and private keys are used to generate different tokens for testing. They can be simply generated
    # with the command `make -f tools/certs/Makefile.selfsigned.mk sample-RSA`.
    pubkey = sample-RSA-public.pem
    privkey = sample-RSA-private.pem
    jwks =
    
    [services]
    jwt_tool_version = 2.2.3
    # To disable the proxy option set this value to: False (no quotes)
    proxy = False
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/examples/methods.go

    func (t T1[X]) m4() X { return t.a }
    
    // If the receiver type is parameterized, type parameters must always be
    // provided: this simply follows from the general rule that a parameterized
    // type must be instantiated before it can be used. A method receiver
    // declaration using a parameterized receiver type is no exception. It is
    // simply that such receiver type expressions perform two tasks simultaneously:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. cmd/os-reliable.go

    package cmd
    
    import (
    	"fmt"
    	"os"
    	"path"
    )
    
    // Wrapper functions to os.RemoveAll, which calls reliableRemoveAll
    // this is to ensure that if there is a racy parent directory
    // create in between we can simply retry the operation.
    func removeAll(dirPath string) (err error) {
    	if dirPath == "" {
    		return errInvalidArgument
    	}
    
    	if err = checkPathLength(dirPath); err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/os/removeall_noat.go

    			// Otherwise, we discard current names, get next entries and try deleting them.
    			if numErr != reqSize {
    				break
    			}
    		}
    
    		// Removing files from the directory may have caused
    		// the OS to reshuffle it. Simply calling Readdirnames
    		// again may skip some entries. The only reliable way
    		// to avoid this is to close and re-open the
    		// directory. See issue 20841.
    		fd.Close()
    
    		if readErr == io.EOF {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java

            write(XmlWriterRequest.<T>builder().content(content).writer(writer).build());
        }
    
        void write(@Nonnull XmlWriterRequest<T> request) throws XmlWriterException;
    
        /**
         * Simply parse the given xml string.
         *
         * @param xml the input xml string
         * @return the parsed object
         * @throws XmlReaderException if an error occurs during the parsing
         * @see #toXmlString(Object)
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/AbstractTestingMultiVersionIntegrationTest.groovy

         * These values will be provided by test framework traits that can be attached to any test class.  As such, we use an interface
         * to ensure type safety and avoid decoupling of these methods in the trait classes.  The trait classes simply have to provide
         * an implementation of this interface specific to the test framework.
         */
        interface BuildScriptConfiguration {
            String getTestFrameworkDependencies(String sourceSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. pkg/kube/controllers/example_test.go

    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // Controller represents a simple example controller show best practices for correctly writing a controller
    // in Istio.
    // In this example, we simply print all pods.
    type Controller struct {
    	pods   kclient.Client[*corev1.Pod]
    	queue  controllers.Queue
    	events *atomic.Int32
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/internal/Transformers.java

     */
    public abstract class Transformers {
    
        /**
         * Creates a transformer that simply type casts the input to the given output type.
         *
         * @param outputType The type to cast the input to
         * @param <O> The type of the transformed object
         * @param <I> The type of the object to be transformed
         * @return A transformer that simply type casts the input to the given output type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 15 23:29:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  9. cmd/acl-handlers.go

    	if objAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    	// Allow putBucketACL if policy action is set, since this is a dummy call
    	// we are simply re-purposing the bucketPolicyAction.
    	if s3Error := checkRequestAuthType(ctx, r, policy.PutBucketPolicyAction, bucket, ""); s3Error != ErrNone {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. pkg/credentialprovider/provider.go

    	// credentials; implementations are safe to ignore the image.
    	Provide(image string) DockerConfig
    }
    
    // A DockerConfigProvider that simply reads the .dockercfg file
    type defaultDockerConfigProvider struct{}
    
    // init registers our default provider, which simply reads the .dockercfg file.
    func init() {
    	RegisterCredentialProvider(".dockercfg",
    		&CachingDockerConfigProvider{
    			Provider: &defaultDockerConfigProvider{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 00:08:54 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top