Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 108 for desert (0.15 sec)

  1. 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)
  2. 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)
  3. pkg/kubelet/cm/devicemanager/manager_test.go

    	testManager.healthyDevices[resourceName1].Insert("dev1")
    	testManager.healthyDevices[resourceName1].Insert("dev2")
    	testManager.healthyDevices[resourceName1].Insert("dev3")
    	testManager.healthyDevices[resourceName1].Insert("dev4")
    	testManager.healthyDevices[resourceName1].Insert("dev5")
    	testManager.healthyDevices[resourceName2] = sets.New[string]()
    	testManager.healthyDevices[resourceName2].Insert("dev1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        // Allocate a result index for written resources that don't have one.
        if (info.is_written) {
          written_resources_.insert(resource);
          if (!info.IsResultIndexAssigned()) info.result_index = num_new_results_++;
        }
    
        resources_.insert({resource, info});
      }
      return success();
    }
    
    // Generates hoisted reads for all resources that need them just before the op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            return new DslObject(container).publicType.concreteClass
        }
    
        def setup() {
            // Verify some assumptions
            assert !type.isAssignableFrom(otherType) && !otherType.isAssignableFrom(type)
            assert type.isInstance(a)
            assert otherType.isInstance(d)
        }
    
        def "can get all domain objects for empty collection"() {
            expect:
            container.isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    	subsetsLocal := private[0].rule.Spec.(*networking.DestinationRule).Subsets
    	subsetsExport := public[0].rule.Spec.(*networking.DestinationRule).Subsets
    	assert.Equal(t, private[0].from, expectedDestRules)
    	assert.Equal(t, public[0].from, expectedDestRules)
    	if len(subsetsLocal) != 4 {
    		t.Errorf("want %d, but got %d", 4, len(subsetsLocal))
    	}
    	if len(subsetsExport) != 4 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetSubject().GetValue(), "subject")
    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetDns(), "dns")
    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetUri(), "uri")
    								assert.Equal(t, true, hcm.GetNormalizePath().GetValue(), "normalize path")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top