Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,591 for found$ (0.38 sec)

  1. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	filteredInfos, allInfos := filterTerminatedContainerInfoAndAssembleByPodCgroupKey(infos)
    	assert.Len(t, filteredInfos, 5)
    	assert.Len(t, allInfos, 11)
    	for _, c := range []string{"/pod0-i", "/pod0-c0"} {
    		if _, found := filteredInfos[c]; !found {
    			t.Errorf("%q is expected to be in the output\n", c)
    		}
    	}
    
    	expectedInfoKeys := []string{"pod0-i-terminated-1", "pod0-c0-terminated-1", "pod0-i-terminated-2", "pod0-c0-terminated-2", "pod0-i", "pod0-c0"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensions.kt

     *
     * If an object with the given [name] is not found, [UnknownDomainObjectException] is thrown.
     * If the object is found but cannot be cast to the expected type [T], [IllegalArgumentException] is thrown.
     *
     * @param name object name
     * @return the object, never null
     * @throws [UnknownDomainObjectException] When the given object is not found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. pkg/bootstrap/platform/gcp.go

    		projectID, found := md[GCPProject]
    		if !found {
    			return "", fmt.Errorf("error constructing GKE cluster url: %s not found in GCP Metadata", GCPProject)
    		}
    		clusterLocation, found := md[GCPLocation]
    		if !found {
    			return "", fmt.Errorf("error constructing GKE cluster url: %s not found in GCP Metadata", GCPLocation)
    		}
    		clusterName, found := md[GCPCluster]
    		if !found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

            getMessage(platformToolChain) == "c compiler not found"
        }
    
        def "is unavailable when no C++ compiler can be found and building C++"() {
            def compilerMissing = Stub(CommandLineToolSearchResult) {
                isAvailable() >> false
                explain(_) >> { DiagnosticsVisitor visitor -> visitor.node("c++ compiler not found") }
            }
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

            badCode()
    
            expect:
            fails("check")
            failure.assertHasDescription("Execution failed for task ':pmdTest'.")
            failure.assertThatCause(containsString("2 PMD rule violations were found. See the report at:"))
            failure.assertHasResolutions(SCAN)
            file("build/reports/pmd/main.xml").assertContents(not(containsClass("org.gradle.Class1")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    		if len(instances) != len(expectedHosts) {
    			return fmt.Errorf("expected 1 service instance, found %d", len(instances))
    		}
    		for _, si := range instances {
    			if si.Service == nil {
    				return fmt.Errorf("proxy ServiceInstance has nil service")
    			}
    			if _, found := expectedHosts[si.Service.Hostname]; !found {
    				return fmt.Errorf("found proxy ServiceInstance for unexpected host: %s", si.Service.Hostname)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    				found := false
    				for _, val := range altNames.DNSNames {
    					if val == DNSName {
    						found = true
    						break
    					}
    				}
    
    				if !found {
    					t.Errorf("%s: altNames does not contain DNSName %s but %v", rt.name, DNSName, altNames.DNSNames)
    				}
    			}
    
    			for _, IPAddress := range rt.expectedIPAddresses {
    				found := false
    				for _, val := range altNames.IPs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/ipallocator_test.go

    				//}
    				if found.Has(ip.String()) {
    					t.Fatalf("[%s] allocated %s twice @ %d", tc.name, ip, count)
    				}
    				found.Insert(ip.String())
    			}
    			if _, err := r.AllocateNext(); err == nil {
    				t.Fatal(err)
    			}
    
    			if !found.Has(tc.released) {
    				t.Fatalf("not allocated address to be releases %s found %d", tc.released, len(found))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/dwarf.go

    		precursor: make(map[*LSym]fnState),
    	}
    }
    
    func (ft *DwarfFixupTable) GetPrecursorFunc(s *LSym) Func {
    	if fnstate, found := ft.precursor[s]; found {
    		return fnstate.precursor
    	}
    	return nil
    }
    
    func (ft *DwarfFixupTable) SetPrecursorFunc(s *LSym, fn Func) {
    	if _, found := ft.precursor[s]; found {
    		ft.ctxt.Diag("internal error: DwarfFixupTable.SetPrecursorFunc double call on %v", s)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  10. pkg/quota/v1/evaluator/core/pods.go

    	result[corev1.ResourcePods] = resource.MustParse("1")
    	if request, found := requests[corev1.ResourceCPU]; found {
    		result[corev1.ResourceCPU] = request
    		result[corev1.ResourceRequestsCPU] = request
    	}
    	if limit, found := limits[corev1.ResourceCPU]; found {
    		result[corev1.ResourceLimitsCPU] = limit
    	}
    	if request, found := requests[corev1.ResourceMemory]; found {
    		result[corev1.ResourceMemory] = request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
Back to top