Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 9,406 for greats (0.1 sec)

  1. pilot/pkg/security/authz/matcher/string.go

    package matcher
    
    import (
    	"strings"
    
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    )
    
    // StringMatcher creates a string matcher for v.
    func StringMatcher(v string) *matcher.StringMatcher {
    	return StringMatcherWithPrefix(v, "")
    }
    
    // StringOrMatcher creates an OR string matcher for a list of values.
    func StringOrMatcher(vs []string) *matcher.ValueMatcher {
    	matchers := []*matcher.ValueMatcher{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

                    dependencyHandler.create(it) as ModuleDependency
                )
            }
        }
    
        private
        fun create(notation: String, dependencyConfiguration: ExternalModuleDependency.() -> Unit) =
            (dependencyHandler.create(notation) as ExternalModuleDependency).apply(dependencyConfiguration)
    }
    
    
    /**
     * Creates a dependency on a project without adding it to a configuration.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/HashMultiset.java

    public final class HashMultiset<E extends @Nullable Object> extends AbstractMapBasedMultiset<E> {
    
      /** Creates a new, empty {@code HashMultiset} using the default initial capacity. */
      public static <E extends @Nullable Object> HashMultiset<E> create() {
        return new HashMultiset<>();
      }
    
      /**
       * Creates a new, empty {@code HashMultiset} with the specified expected number of distinct
       * elements.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. helm/minio/values.yaml

    ##
    podDisruptionBudget:
      enabled: false
      maxUnavailable: 1
    
    ## Specify the service account to use for the MinIO pods. If 'create' is set to 'false'
    ## and 'name' is left unspecified, the account 'default' will be used.
    serviceAccount:
      create: true
      ## The name of the service account to use. If 'create' is 'true', a service account with that name
      ## will be created.
      name: "minio-sa"
    
    metrics:
      serviceMonitor:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (1)
  5. android/guava-testlib/src/com/google/common/collect/testing/TestUnhashableCollectionGenerator.java

      }
    
      @Override
      public T create(Object... elements) {
        UnhashableObject[] array = createArray(elements.length);
        int i = 0;
        for (Object e : elements) {
          array[i++] = (UnhashableObject) e;
        }
        return create(array);
      }
    
      /**
       * Creates a new collection containing the given elements; implement this method instead of {@link
       * #create(Object...)}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/maven/MavenProjectsCreatorSpec.groovy

    </project>"""
    
            when:
            creator.create(settings.buildSettings(), pom) as List
    
            then:
            def ex = thrown(MavenConversionException)
            ex.message == "Unable to create Maven project model using POM $pom."
        }
    
        def "fails with decent exception if pom does not exist"() {
            def pom = temp.file("pom.xml")
    
            when:
            creator.create(settings.buildSettings(), pom) as List
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/FactoryNamedDomainObjectContainer.java

        private final MutationGuard crossProjectConfiguratorMutationGuard;
    
        /**
         * <p>Creates a container that instantiates using the given factory.<p>
         *
         * @param type The concrete type of element in the container (must implement {@link Named})
         * @param instantiator The instantiator to use to create any other collections based on this one
         * @param factory The factory responsible for creating new instances on demand
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/plugins/IvyPublishPluginTest.groovy

            when:
            publishing.publications.create("test", IvyPublication)
    
            then:
            publishing.publications.size() == 1
            publishing.publications.test instanceof DefaultIvyPublication
        }
    
        def "creates publish task for publication and repository"() {
            when:
            publishing.publications.create("test", IvyPublication)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionFactory.java

        /**
         * Creates a {@link FileCollection} with the given contents.
         *
         * The collection is live, so that the contents are queried as required on query of the collection.
         */
        FileCollectionInternal create(MinimalFileSet contents);
    
        /**
         * Creates a {@link FileCollection} with the given contents, and built by the given tasks.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

            name                        | action
            "create(String)"            | { create("foo") }
            "maybeCreate(String)"       | { maybeCreate("foo") }
            "create(String, Action)"    | { create("foo") {} }
            "register(String)"          | { register("foo").get() }
            "register(String, Action)"  | { register("foo", {}).get() }
        }
    
        def "creates resolvable configurations"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top