Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 76 for stops (0.04 sec)

  1. pkg/controller/replicaset/replica_set_test.go

    		}
    		if err != test.expectedErr {
    			t.Errorf("%s: unexpected processed batch size, expected %v, got %v", test.name, test.expectedErr, err)
    		}
    		// verify that slowStartBatch stops trying more calls after a batch fails
    		if callCnt != test.expectedCallCnt {
    			t.Errorf("%s: slowStartBatch() still tries calls after a batch fails, expected %d calls, got %d", test.name, test.expectedCallCnt, callCnt)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	s := os.Getenv(name)
    	if s == "" {
    		return def
    	}
    	return s
    }
    
    // An ImportMode controls the behavior of the Import method.
    type ImportMode uint
    
    const (
    	// If FindOnly is set, Import stops after locating the directory
    	// that should contain the sources for a package. It does not
    	// read any files in the directory.
    	FindOnly ImportMode = 1 << iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    	// because its initial stack pointer can be outside the system stack bounds,
    	// and Windows stops the stack unwinding without calling the exception handler
    	// when it reaches that point.
    	MOVQ	BX, CX		// CX = first argument in Win64
    	CALL	AX
    	// The exception handler is not called if the next instruction is part of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	if t.IdleConnTimeout > 0 {
    		oldTime = time.Now().Add(-t.IdleConnTimeout)
    	}
    
    	// Look for most recently-used idle connection.
    	if list, ok := t.idleConn[w.key]; ok {
    		stop := false
    		delivered := false
    		for len(list) > 0 && !stop {
    			pconn := list[len(list)-1]
    
    			// See whether this connection has been idle too long, considering
    			// only the wall time (the Round(0)), in case this is a laptop or VM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    				// False-positives are ok: if we have a false-positive here, we'll do an
    				// extra iteration of package loading this time, but we'll still
    				// converge when the root set stops changing.
    				//
    				// In some sense, we can think of this as ‘upgraded the module providing
    				// pkg.path from "none" to a version higher than "none"’.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "red",
                    "value": 80
                  }
                ]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    		return w
    	}
    
    	allEventsWatcher := createWatch(storage.Everything)
    	defer allEventsWatcher.Stop()
    	fooEventsWatcher := createWatch(fooPredicate)
    	defer fooEventsWatcher.Stop()
    	barEventsWatcher := createWatch(barPredicate)
    	defer barEventsWatcher.Stop()
    
    	makePod := func(labels map[string]string, rv string) *examplev1.Pod {
    		return &examplev1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    			anySymbolized := false
    			stop := false
    			for _, pc := range cgoBuf[:cgoN] {
    				if cgoSymbolizer == nil {
    					if pr, stop := commitFrame(); stop {
    						break
    					} else if pr {
    						print("non-Go function at pc=", hex(pc), "\n")
    					}
    				} else {
    					stop = printOneCgoTraceback(pc, commitFrame, &arg)
    					anySymbolized = true
    					if stop {
    						break
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
    
            @Override
            public void stop() {
                try {
                    CompositeStoppable.stoppable(Arrays.asList(serviceProviders)).stop();
                } finally {
                    Arrays.fill(serviceProviders, null);
                }
            }
        }
    
        /**
         * Wraps a parent to ignore stop requests.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	w.Stop()
    
    	// Make sure when we watch from 0 we receive an ADDED event
    	w, err = store.Watch(ctx, key, storage.ListOptions{ResourceVersion: "0", Predicate: storage.Everything})
    	if err != nil {
    		t.Fatalf("Watch failed: %v", err)
    	}
    
    	testCheckResult(t, w, watch.Event{Type: watch.Added, Object: out})
    	w.Stop()
    
    	// Compact previous versions
    	if compaction == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top