Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 139 for died (0.04 sec)

  1. pkg/kubelet/cm/cpumanager/policy_static_test.go

    		}
    	}
    
    	if !testCase.expCPUAlloc {
    		_, found := st.assignments[string(testCase.pod.UID)][container.Name]
    		if found {
    			t.Errorf("StaticPolicy Allocate() error (%v). Did not expect container %v to be present in assignments %v",
    				testCase.description, container.Name, st.assignments)
    		}
    	}
    }
    
    func runStaticPolicyTestCaseWithFeatureGate(t *testing.T, testCase staticPolicyTest) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            then:
            //ME: This is not a foolproof way of checking that additional jars have not been accidentally added to the distribution
            //but should be good enough. If this test fails for you and you did not intend to add new jars to the distribution
            //then there is something to be fixed. If you intentionally added new jars to the distribution and this is now failing please
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/network_test.go

    		NetworksWatcher: meshNetworks,
    		DomainSuffix:    "cluster.local",
    		CRDs:            []schema.GroupVersionResource{gvr.KubernetesGateway},
    	})
    
    	if len(c.NetworkGateways()) != 0 {
    		t.Fatal("did not expect any gateways yet")
    	}
    
    	notifyCh := make(chan struct{}, 1)
    	var (
    		gwMu sync.Mutex
    		gws  []model.NetworkGateway
    	)
    	setGws := func(v []model.NetworkGateway) {
    		gwMu.Lock()
    		defer gwMu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. cmd/erasure-healing.go

    			VersionID: versionID,
    		})
    		errs = make([]error, len(errs))
    		if derr == nil {
    			derr = errFileNotFound
    			if versionID != "" {
    				derr = errFileVersionNotFound
    			}
    			// We did find a new danging object
    			return er.defaultHealResult(m, storageDisks, storageEndpoints,
    				errs, bucket, object, versionID), derr
    		}
    		return er.defaultHealResult(m, storageDisks, storageEndpoints,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  5. src/runtime/gc_test.go

    	for retry := 0; retry < 5; retry++ {
    		runtime.GCTestMoveStackOnNextCall()
    		if moveStackCheck(t, &onStack, uintptr(unsafe.Pointer(&onStack))) {
    			// Passed.
    			return
    		}
    	}
    	t.Fatal("stack did not move")
    }
    
    // This must not be inlined because the point is to force a stack
    // growth check and move the stack.
    //
    //go:noinline
    func moveStackCheck(t *testing.T, new *int, old uintptr) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            // second cannot be loaded from the cache due to a cache miss
            result.assertTasksNotSkipped(second)
            // second should now be cached because there was no overlap since
            // first did not execute
            listCacheFiles().size() == 2
        }
    
        def "overlapping output directory with first cleanSecond second then first second"() {
            def (String first, TestFile firstOutput,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. internal/dsync/drwmutex.go

    					// so exit out and release any locks that did get acquired
    					done = true
    				}
    			}
    		case <-ctx.Done():
    			// Capture timedout locks as failed or took too long
    			locksFailed++
    			if locksFailed > tolerance {
    				// We know that we are not going to get the lock anymore,
    				// so exit out and release any locks that did get acquired
    				done = true
    			}
    		}
    
    		if done {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    	// embedded interfaces from embedded values.
    	if types.Implements(types.NewPointer(typ), lockerType) && !types.Implements(typ, lockerType) {
    		return []string{typ.String()}
    	}
    
    	// In go1.10, sync.noCopy did not implement Locker.
    	// (The Unlock method was added only in CL 121876.)
    	// TODO(adonovan): remove workaround when we drop go1.10.
    	if analysisutil.IsNamedType(typ, "sync", "noCopy") {
    		return []string{typ.String()}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/rangefunc/rewrite.go

    func (r *rewriter) checks(loop *forLoop, pos syntax.Pos) []syntax.Stmt {
    	var list []syntax.Stmt
    	if len(loop.checkBranch) > 0 {
    		did := make(map[branch]bool)
    		for _, br := range loop.checkBranch {
    			if did[br] {
    				continue
    			}
    			did[br] = true
    			doBranch := &syntax.BranchStmt{Tok: br.tok, Label: &syntax.Name{Value: br.label}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/filters_test.go

    		delete(expected, k)
    		if _, ok := unexpected[k]; ok {
    			t.Errorf("expected %s to be filtered out", k)
    		}
    	}
    	if len(expected) > 0 {
    		t.Errorf("did not include %v", expected)
    	}
    }
    
    func TestRun(t *testing.T) {
    	// source svc/cluster -> dest services -> number of subtests (should == num clusters)
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top