Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for Detector (0.22 sec)

  1. cluster/gce/gci/configure-helper.sh

    EOF
    }
    
    function create-node-problem-detector-kubeconfig {
      local apiserver_address="${1}"
      if [[ -z "${apiserver_address}" ]]; then
        echo "Must provide API server address to create node-problem-detector kubeconfig file!"
        exit 1
      fi
      echo "Creating node-problem-detector kubeconfig file"
      mkdir -p /var/lib/node-problem-detector
      cat <<EOF >/var/lib/node-problem-detector/kubeconfig
    apiVersion: v1
    kind: Config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    			(p.ImportPath == "sync/atomic" || p.ImportPath == "internal/runtime/atomic") {
    			continue
    		}
    
    		// If using the race detector, silently ignore attempts to run
    		// coverage on the runtime packages. It will cause the race
    		// detector to be invoked before it has been initialized. Note
    		// the use of "regonly" instead of just ignoring the package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	// All of this lock's critical sections should be
    	// extremely short.
    	lockInit(&memstats.heapStats.noPLock, lockRankLeafRank)
    
    	// raceinit must be the first call to race detector.
    	// In particular, it must be done before mallocinit below calls racemapshadow.
    	gp := getg()
    	if raceenabled {
    		gp.racectx, raceprocctx0 = raceinit()
    	}
    
    	sched.maxmcount = 10000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    	case <-ctx.Done():
    		t.Fatal("timeout: failed to rollback query without closing rows:", ctx.Err())
    	}
    }
    
    // TestIssue20622 tests closing the transaction before rows is closed, requires
    // the race detector to fail.
    func TestIssue20622(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/garbagecollector_test.go

    		old := []metav1.OwnerReference{{UID: "1"}, {UID: "2"}}
    		new := []metav1.OwnerReference{{UID: "2"}, {UID: "3"}}
    		referencesDiffs(old, new)
    	}
    }
    
    // TestDependentsRace relies on golang's data race detector to check if there is
    // data race among in the dependents field.
    func TestDependentsRace(t *testing.T) {
    	logger, _ := ktesting.NewTestContext(t)
    
    	gc := setupGC(t, &restclient.Config{})
    	defer close(gc.stop)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

      * Docker version 1.11.2 known issues
        - Kernel crash with Aufs storage driver on Debian Jessie ([#27885]((https://github.com/kubernetes/kubernetes/issues/27885))
          which can be identified by the [node problem detector](http://kubernetes.io/docs/admin/node-problem/)
        - Leaked File descriptors ([#275](https://github.com/docker/containerd/issues/275))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    	// as there are no synchronisation events in that function (no locks, no channels, ...) each test routine
    	// should have its own vector clock increased independently. Golang race detector uses pure happens-before
    	// detection, so would catch a race condition consistently, despite only spawning 2 goroutines
    	for i := 0; i < 2; i++ {
    		go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/strategy_test.go

    			job: batch.Job{
    				ObjectMeta: getValidObjectMeta(0),
    				Spec: batch.JobSpec{
    					Selector:      validSelector,
    					Template:      validPodTemplateSpec,
    					SuccessPolicy: nil,
    				},
    			},
    			updatedJob: batch.Job{
    				ObjectMeta: getValidObjectMeta(0),
    				Spec: batch.JobSpec{
    					Selector:      validSelector,
    					Template:      validPodTemplateSpec,
    					SuccessPolicy: updatedSuccessPolicy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  9. pkg/apis/batch/validation/validation_test.go

    					}},
    				}},
    			},
    		},
    	}
    	// This is to test immutability of the selector, both the new and old
    	// selector should match the labels in the template, which is immutable
    	// on its own; therfore, the only way to test selector immutability is
    	// when the new selector is changed but still matches the existing labels.
    	newSelector := getValidGeneratedSelector()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control_test.go

    		t.Error("Failed to scale statefulset to 5 replicas")
    	}
    	selector, err := metav1.LabelSelectorAsSelector(set.Spec.Selector)
    	if err != nil {
    		t.Error(err)
    	}
    	claims, err := om.claimsLister.PersistentVolumeClaims(set.Namespace).List(selector)
    	if err != nil {
    		t.Error(err)
    	}
    	pods, err := om.podsLister.Pods(set.Namespace).List(selector)
    	if err != nil {
    		t.Error(err)
    	}
    	for _, pod := range pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top