Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,389 for addLink (0.11 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. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go

    type NewInformerFunc func(clientset.Interface, time.Duration) cache.SharedIndexInformer
    
    // SharedInformerFactory a small interface to allow for adding an informer without an import cycle
    type SharedInformerFactory interface {
    	Start(stopCh <-chan struct{})
    	InformerFor(obj runtime.Object, newFunc NewInformerFunc) cache.SharedIndexInformer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 16 22:25:28 UTC 2018
    - 1.4K 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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/java/fixtures/tests/dependencyInsight.out

                   - Variant sources provides com.google.code.gson:gson:2.8.5
    
    com.google.code.gson:gson:2.8.5 FAILED
    \--- functionalTestClasspath
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 20:55:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/testing/fake_manager.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // FakeManager simulates a prober.Manager for testing.
    type FakeManager struct{}
    
    // Unused methods below.
    
    // AddPod simulates adding a Pod.
    func (FakeManager) AddPod(_ *v1.Pod) {}
    
    // RemovePod simulates removing a Pod.
    func (FakeManager) RemovePod(_ *v1.Pod) {}
    
    // Simulated stopping liveness and startup probes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top