Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,411 for addKind (0.12 sec)

  1. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies/groovy/build.gradle

    repositories {
        mavenCentral()
    }
    
    // tag::configure-suite-dependencies[]
    testing {
        suites {
            test { // <1>
                dependencies {
                    // Note that this is equivalent to adding dependencies to testImplementation in the top-level dependencies block
                    implementation 'org.assertj:assertj-core:3.21.0' // <2>
                    annotationProcessor 'com.google.auto.value:auto-value:1.9' // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/typed_xds_cache_test.go

    		},
    	}
    
    	c := newTypedXdsCache[uint64]()
    
    	cache := c.(*lruCache[uint64])
    
    	assert.Equal(t, cache.store.Len(), 0)
    	assert.Equal(t, cache.indexLength(), 0)
    
    	// adding the entry populates the indexes
    	c.Add(firstEntry.Key(), firstEntry, req, res)
    
    	assert.Equal(t, cache.store.Len(), 1)
    	assert.Equal(t, cache.indexLength(), 2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/crypto/ecdsa/ecdsa_s390x.go

    		priv.D.FillBytes(params[3*blockSize : 4*blockSize])
    		k.FillBytes(params[4*blockSize : 5*blockSize])
    		// Convert verify function code into a sign function code by adding 8.
    		// We also need to set the 'deterministic' bit in the function code, by
    		// adding 128, in order to stop the instruction using its own random number
    		// generator in addition to the random number we supply.
    		switch kdsa(functionCode+136, &params) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_import_issue41113.txt

    # Regression test for https://golang.org/issue/41113.
    #
    # When resolving a missing import path, the inability to add the package from
    # one module path should not interfere with adding a nested path.
    
    # Initially, our module depends on split-incompatible v2.1.0-pre+incompatible,
    # from which an imported package has been removed (and relocated to the nested
    # split-incompatible/subpkg module). modload.QueryPattern will suggest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 932 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelectorTest.groovy

            accept("(,2.0]", "2.0")
    
            accept("(,2.0[", "0")
            accept("(,2.0[", "0.1.2")
            accept("(,2.0[", "1.99")
        }
    
        def "accepts candidate versions that fall into the selector's range (adding qualifiers to the mix)"() {
            expect:
            accept("[1.0,2.0]", "1.5-dev-1")
            accept("[1.0,2.0]", "1.2.3-rc-2")
            accept("[1.0,2.0]", "2.0-final")
    
            accept("[1.0-dev-1,2.0[", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginTarget.java

    /**
     * Represents the target that a plugin should be applied to, such as a Gradle, Settings or Project object.
     * This is used to apply a plugin to a target in a way that is appropriate for that target, such as adding
     * additional functionality specific to the target or disallowing certain types of plugins to be applied.
     */
    public interface PluginTarget {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/README.md

    them into syscalls. This requires the name of the prototype in the comment to
    match a syscall number in the `zsysnum_${GOOS}_${GOARCH}.go` file. The function
    prototype can be exported (capitalized) or not.
    
    Adding a new syscall often just requires adding a new `//sys` function prototype
    with the desired arguments and a capitalized name so it is exported. However, if
    you want the interface to the syscall to be different, often one will make an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/values.yaml

        # Default node selector to be applied to all deployments so that all pods can be
        # constrained to run a particular nodes. Each component can overwrite these default
        # values by adding its node selector block in the relevant section below and setting
        # the desired values.
        defaultNodeSelector: {}
    
        # enable pod disruption budget for the control plane, which is used to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelMaps.java

            Cast.uncheckedCast(ModelType.of(ChildNodeInitializerStrategy.class));
    
        public static <T> MutableModelNode addModelMapNode(MutableModelNode modelNode, ModelType<T> elementModelType, String name) {
            modelNode.addLink(
                ModelRegistrations.of(modelNode.getPath().child(name))
                    .action(ModelActionRole.Create, NODE_INITIALIZER_REGISTRY_MODEL_REFERENCE, new BiAction<MutableModelNode, NodeInitializerRegistry>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue49482.go

    // The following parse as invalid array types due to parsing ambiguitiues.
    type _ [P *int /* ERROR "int (type) is not an expression" */ ]int
    type _ [P /* ERROR "non-function P" */ (*int)]int
    
    // Adding a trailing comma or an enclosing interface resolves the ambiguity.
    type _[P *int,] int
    type _[P (*int),] int
    type _[P interface{*int}] int
    type _[P interface{(*int)}] int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 906 bytes
    - Viewed (0)
Back to top