Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for Terminate (0.17 sec)

  1. src/runtime/mgc.go

    // On-the-fly garbage collection: an exercise in cooperation. Commun. ACM 21, 11 (November 1978),
    // 966-975.
    // For journal quality proofs that these steps are complete, correct, and terminate see
    // Hudson, R., and Moss, J.E.B. Copying Garbage Collection without stopping the world.
    // Concurrency and Computation: Practice and Experience 15(3-5), 2003.
    //
    // 1. GC performs sweep termination.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    // An error will be returned if it fails to update or acquire the initial lock.
    // Once a proxier is created, it will keep iptables and ipvs rules up to date in the background and
    // will not terminate if a particular iptables or ipvs call fails.
    func NewProxier(
    	ctx context.Context,
    	ipFamily v1.IPFamily,
    	ipt utiliptables.Interface,
    	ipvs utilipvs.Interface,
    	ipset utilipset.Interface,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

          out.writeInt(delegate.size());
          for (Entry<K, V> entry : delegate.entrySet()) {
            out.writeObject(entry.getKey());
            out.writeObject(entry.getValue());
          }
          out.writeObject(null); // terminate entries
        }
    
        @SuppressWarnings("deprecation") // serialization of deprecated feature
        @J2ktIncompatible // java.io.ObjectInputStream
        MapMaker readMapMaker(ObjectInputStream in) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          out.writeInt(delegate.size());
          for (Entry<K, V> entry : delegate.entrySet()) {
            out.writeObject(entry.getKey());
            out.writeObject(entry.getValue());
          }
          out.writeObject(null); // terminate entries
        }
    
        @SuppressWarnings("deprecation") // serialization of deprecated feature
        @J2ktIncompatible // java.io.ObjectInputStream
        MapMaker readMapMaker(ObjectInputStream in) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    		t.Helper()
    		if state.Terminated == nil || state.Running != nil || state.Waiting != nil {
    			t.Fatalf("unexpected state: %#v", state)
    		}
    		if state.Terminated.ExitCode != 137 || state.Terminated.Reason != kubecontainer.ContainerReasonStatusUnknown || len(state.Terminated.Message) == 0 {
    			t.Fatalf("unexpected terminated state: %#v", state.Terminated)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    func (pc *persistConn) mapRoundTripError(req *transportRequest, startBytesWritten int64, err error) error {
    	if err == nil {
    		return nil
    	}
    
    	// Wait for the writeLoop goroutine to terminate to avoid data
    	// races on callers who mutate the request on failure.
    	//
    	// When resc in pc.roundTrip and hence rc.ch receives a responseAndError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	ldr              *Loader
    	AfterErrorAction func()
    }
    
    // Errorf method logs an error message.
    //
    // After each error, the error actions function will be invoked; this
    // will either terminate the link immediately (if -h option given)
    // or it will keep a count and exit if more than 20 errors have been printed.
    //
    // Logging an error means that on exit cmd/link will delete any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

                "reason": "reasonValue",
                "message": "messageValue"
              },
              "running": {
                "startedAt": "2001-01-01T01:01:01Z"
              },
              "terminated": {
                "exitCode": 1,
                "signal": 2,
                "reason": "reasonValue",
                "message": "messageValue",
                "startedAt": "2005-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

                "reason": "reasonValue",
                "message": "messageValue"
              },
              "running": {
                "startedAt": "2001-01-01T01:01:01Z"
              },
              "terminated": {
                "exitCode": 1,
                "signal": 2,
                "reason": "reasonValue",
                "message": "messageValue",
                "startedAt": "2005-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider_test.go

    		containerLogStats8 = makeFakeLogStats(6000)
    
    		// Terminated pod sandbox
    		sandbox4        = makeFakePodSandbox("sandbox1-name", "sandbox1-uid", "sandbox1-ns", true)
    		container6      = makeFakeContainer(sandbox4, cName6, 0, true)
    		containerStats6 = makeFakeContainerStats(container6, imageFsMountpoint)
    
    		// Terminated pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top