Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for Generator4 (0.11 sec)

  1. pilot/pkg/security/authz/model/generator.go

    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/security/authz/matcher"
    	"istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pkg/config/security"
    	"istio.io/istio/pkg/spiffe"
    )
    
    type generator interface {
    	permission(key, value string, forTCP bool) (*rbacpb.Permission, error)
    	principal(key, value string, forTCP bool, useAuthenticated bool) (*rbacpb.Principal, error)
    }
    
    type extendedGenerator interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

        private Map<String, Signature.Generator> sanitizedGenerators() {
            return sanitize(
                signatures.isPresent()
                    ? computeCachedSignatures()
                    : generators.get()
            );
        }
    
        /**
         * Returns signature generators mapped by their key with duplicated and non-existing inputs removed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

     public:
      virtual ~ParamIteratorInterface() {}
      // A pointer to the base generator instance.
      // Used only for the purposes of iterator comparison
      // to make sure that two iterators belong to the same generator.
      virtual const ParamGeneratorInterface<T>* BaseGenerator() const = 0;
      // Advances iterator to point to the next element
      // provided by the generator. The caller is responsible
      // for not calling Advance() on an iterator equal to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/generate/generate.go

    		return true
    	}
    
    	g := &Generator{
    		r:        bytes.NewReader(src),
    		path:     absFile,
    		pkg:      filePkg.Name.String(),
    		commands: make(map[string][]string),
    	}
    	return g.run()
    }
    
    // A Generator represents the state of a single Go source file
    // being scanned for generator commands.
    type Generator struct {
    	r        io.Reader
    	path     string // full rooted path name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

     public:
      virtual ~ParamIteratorInterface() {}
      // A pointer to the base generator instance.
      // Used only for the purposes of iterator comparison
      // to make sure that two iterators belong to the same generator.
      virtual const ParamGeneratorInterface<T>* BaseGenerator() const = 0;
      // Advances iterator to point to the next element
      // provided by the generator. The caller is responsible
      // for not calling Advance() on an iterator equal to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

            StartScriptGenerator generator = new StartScriptGenerator(unixStartScriptGenerator, windowsStartScriptGenerator);
            JavaModuleDetector javaModuleDetector = getJavaModuleDetector();
            generator.setApplicationName(getApplicationName());
            generator.setMainClassName(fullMainArgument());
            generator.setDefaultJvmOpts(getDefaultJvmOpts());
            generator.setOptsEnvironmentVar(getOptsEnvironmentVar());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SigningFixtures.groovy

            File secring = new File(directory, "secring.gpg")
            File pubring = new File(directory, "pubring.gpg")
            def generator = createKeyRingGenerator(userId, password, keySize)
            def secretKeys = generator.generateSecretKeyRing().secretKeys.collect { it }
            PGPSecretKeyRing secret = new PGPSecretKeyRing(secretKeys)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. pilot/pkg/xds/discovery.go

    	Env *model.Environment
    
    	// Generators allow customizing the generated config, based on the client metadata.
    	// Key is the generator type - will match the Generator metadata to set the per-connection
    	// default generator, or the combination of Generator metadata and TypeUrl to select a
    	// different generator for a type.
    	// Normal istio clients use the default generator - will not be impacted by this.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

    public class SortedMultisetTestSuiteBuilder<E> extends MultisetTestSuiteBuilder<E> {
      public static <E> SortedMultisetTestSuiteBuilder<E> using(TestMultisetGenerator<E> generator) {
        SortedMultisetTestSuiteBuilder<E> result = new SortedMultisetTestSuiteBuilder<>();
        result.usingGenerator(generator);
        return result;
      }
    
      @Override
      public TestSuite createTestSuite() {
        withFeatures(KNOWN_ORDER);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/cmd/trace/gen.go

    	"internal/trace"
    	"internal/trace/traceviewer"
    	"strings"
    )
    
    // generator is an interface for generating a JSON trace for the trace viewer
    // from a trace. Each method in this interface is a handler for a kind of event
    // that is interesting to render in the UI via the JSON trace.
    type generator interface {
    	// Global parts.
    	Sync() // Notifies the generator of an EventSync event.
    	StackSample(ctx *traceContext, ev *trace.Event)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top