Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 124 for asset0 (0.15 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		createExternalNameService(controller, "svc5", "nsA",
    			[]int32{1, 2, 3}, "foo.co", t, fx)
    
    		converted := controller.Services()
    		assert.Equal(t, len(converted), 1)
    
    		eps := GetEndpointsForPort(converted[0], controller.Endpoints, 1)
    		assert.Equal(t, len(eps), 0)
    		assert.Equal(t, converted[0].Attributes, model.ServiceAttributes{
    			ServiceRegistry:          "Kubernetes",
    			Name:                     "svc5",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            then:
            with(javaLibrary.parsedIvy) {
                assert configurations.keySet() == ["compile", "default"] as Set // skipped runtime
                assertConfigurationDependsOn('compile', "org:foo:1.0")
            }
            with(javaLibrary.parsedModuleMetadata) {
                assert variants.collect { it.name } == ["apiElements"]
                assert variants[0].dependencies.collect { it.toString() } == ["org:foo:1.0"]
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            1 * structureVisitor.startVisit(_, _) >> { source, files ->
                assert files.toList() == [file1]
                true
            }
            1 * structureVisitor.visitCollection(_, _) >> { source, files ->
                assert files.toList() == [file1]
            }
            1 * structureVisitor.startVisit(_, _) >> { source, files ->
                assert files.toList() == [file2]
                true
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            actual.each {
                assert it.key instanceof String
                assert it.value instanceof String
            }
            assert actual == ImmutableMap.copyOf(expected)
        }
    
        private static void assertImmutable(Map<String, String> map) {
            try {
                map.put("immutableTest", "value")
                Assert.fail('Map is not immutable')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                        assert inputArtifactDependencies.every { it.exists() }
    
                        def output = outputs.file(input.name + ".txt")
                        def workspace = output.parentFile
                        assert workspace.directory && workspace.list().length == 0
                        println "Transforming \${input.name} to \${output.name}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

    import static org.hamcrest.MatcherAssert.assertThat;
    import static org.junit.Assert.assertEquals;
    import static org.junit.Assert.assertFalse;
    import static org.junit.Assert.assertNotNull;
    import static org.junit.Assert.assertNull;
    import static org.junit.Assert.assertSame;
    import static org.junit.Assert.assertTrue;
    import static org.junit.Assert.fail;
    
    public class AsmBackedClassGeneratorTest {
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/manager_test.go

    		waitUpdateAllocatedDevicesChan <- struct{}{}
    	}()
    
    	set, err := testManager.devicesToAllocate(podToAllocate, containerToAllocate, resourceName, 1, sets.New[string]())
    	assert.NoError(t, err)
    	assert.Equal(t, set, sets.New[string](deviceID))
    }
    
    func TestGetDeviceRunContainerOptions(t *testing.T) {
    	res1 := TestResource{
    		resourceName:     "domain1.com/resource1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. pilot/pkg/model/virtualservice_test.go

    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const wildcardIP = "0.0.0.0"
    
    func TestMergeVirtualServices(t *testing.T) {
    	independentVs := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            assert actual instanceof ImmutableCollection
            assert immutableCollectionType.isInstance(actual)
            assertCollectionIs(actual, expected)
        }
    
        protected void assertCollectionIs(ImmutableCollection actual, Collection<String> expected) {
            assert actual == toImmutable(expected)
            actual.each {
                assert it instanceof String
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/validation/validation_test.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"fmt"
    	"math"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/assert"
    	flowcontrolv1 "k8s.io/api/flowcontrol/v1"
    	flowcontrolv1beta1 "k8s.io/api/flowcontrol/v1beta1"
    	flowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2"
    	flowcontrolv1beta3 "k8s.io/api/flowcontrol/v1beta3"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
Back to top