Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 569 for biases (0.17 sec)

  1. pilot/pkg/security/trustdomain/bundle.go

    type Bundle struct {
    	// Contain the local trust domain and its aliases.
    	// The trust domain corresponds to the trust root of a system.
    	// Refer to [SPIFFE-ID](https://github.com/spiffe/spiffe/blob/master/standards/SPIFFE-ID.md#21-trust-domain)
    	// The trust domain aliases represent the aliases of `trust_domain`.
    	// For example, if we have
    	// trustDomain: td1, trustDomainAliases: ["td2", "td3"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 23 15:48:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PluginDslSupport.groovy

            withPlugins([(id): null])
        }
    
        void withPluginAlias(String alias) {
            withPlugins([:], [(alias): null])
        }
    
        void withPluginAliases(List<String> aliases = []) {
            withPlugins([:], aliases.collectEntries { [it, null] })
        }
    
        void withPluginsBlockContents(String block) {
            def text = buildFile.text
            int idx = text.indexOf('allprojects')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

        /**
         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
         * nested classes, inner classes, nested type aliases for the class scope, and top-level classes and top-level type aliases for file scope.
         *
         * This function needs to retrieve a set of all possible names before processing the scope.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ArchitecturesTest.groovy

    import spock.lang.Specification
    
    
    class ArchitecturesTest extends Specification {
        def "test 32-bit aliases"() {
            expect:
            Architectures.forInput(architecture).isI386()
            where:
            architecture << [ "x86", "i386", "ia-32", "i686" ]
        }
    
        def "test 64-bit aliases"() {
            expect:
            Architectures.forInput(architecture).isAmd64()
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/math/big/prime_test.go

    	// Mathematics of Computation, 64(209) (January 1995), pp. 335-361.
    	"1195068768795265792518361315725116351898245581", // strong pseudoprime to prime bases 2 through 29
    	// strong pseudoprime to all prime bases up to 200
    	`
         80383745745363949125707961434194210813883768828755814583748891752229
          74273765333652186502336163960045457915042023603208766569966760987284
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 7.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/VersionCatalogBuilder.java

        /**
         * Declares a bundle of dependencies. A bundle consists of a name for the bundle,
         * and a list of aliases. The aliases must correspond to aliases defined via
         * the {@code library()} methods.
         *
         * @param alias the alias of the bundle
         * @param aliases the aliases of the dependencies included in the bundle
         * @see #library(String, String, String)
         * @see #library(String, String)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

            }
        }
    
        static class NameClash extends InCatalog<NameClash> {
            private List<String> aliases = []
            private String getterName
            private String kind = 'library aliases'
    
            NameClash inConflict(String... aliases) {
                Collections.addAll(this.aliases, aliases)
                this
            }
    
            NameClash getterName(String getter) {
                this.getterName = getter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  8. cmd/preferredimports/preferredimports.go

    var (
    	importAliases = flag.String("import-aliases", "hack/.import-aliases", "json file with import aliases")
    	confirm       = flag.Bool("confirm", false, "update file with the preferred aliases for imports")
    	regex         = flag.String("include-path", "(test/e2e/|test/e2e_node)", "only files with paths matching this regex is touched")
    	isTerminal    = term.IsTerminal(int(os.Stdout.Fd()))
    	logPrefix     = ""
    	aliases       = map[*regexp.Regexp]string{}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/apps.go

    	"k8s.io/kubernetes/pkg/controller/statefulset"
    )
    
    func newDaemonSetControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.DaemonSetController,
    		aliases:  []string{"daemonset"},
    		initFunc: startDaemonSetController,
    	}
    }
    func startDaemonSetController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

                // Because they are EXTRA attributes, we consider that a
                // candidate which does NOT provide this value is a better match
                int candidateCount = candidateAttributeSets.length;
                BitSet any = new BitSet(candidateCount);
                for (int c = 0; c < candidateCount; c++) {
                    ImmutableAttributes candidateAttributeSet = candidateAttributeSets[c];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
Back to top