Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for stops (0.08 sec)

  1. src/runtime/proc.go

    		notesleep(&newmHandoff.wake)
    	}
    }
    
    // Stops execution of the current m until new work is available.
    // Returns with acquired P.
    func stopm() {
    	gp := getg()
    
    	if gp.m.locks != 0 {
    		throw("stopm holding locks")
    	}
    	if gp.m.p != 0 {
    		throw("stopm holding p")
    	}
    	if gp.m.spinning {
    		throw("stopm spinning")
    	}
    
    	lock(&sched.lock)
    	mput(gp.m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    // Supports following actions:
    // - restart (restarts all the MinIO instances in a setup)
    // - stop (stops all the MinIO instances in a setup)
    // - freeze (freezes all incoming S3 API calls)
    // - unfreeze (unfreezes previously frozen S3 API calls)
    //
    // This newer API now returns back status per remote peer and local regarding
    // if a "restart/stop" was successful or not. Service signal now supports
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	stop := make(chan struct{})
    	go sharedInformers.Start(stop)
    	return garbageCollector{gc, stop}
    }
    
    func getPod(podName string, ownerReferences []metav1.OwnerReference) *v1.Pod {
    	return &v1.Pod{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "Pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                }
                transformActionClass == "BrokenTransform"
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/6156")
        def "stops resolving dependencies of task when artifact transforms are encountered"() {
            given:
            buildFile << """
                project(':lib') {
                    task jar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    // terminate newly created containers and sandboxes.
    func (kl *Kubelet) killPod(ctx context.Context, pod *v1.Pod, p kubecontainer.Pod, gracePeriodOverride *int64) error {
    	// Call the container runtime KillPod method which stops all known running containers of the pod
    	if err := kl.containerRuntime.KillPod(ctx, pod, p, gracePeriodOverride); err != nil {
    		return err
    	}
    	if err := kl.containerManager.UpdateQOSCgroups(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

    * Add SNI support to the apiserver ([#35109](https://github.com/kubernetes/kubernetes/pull/35109), [@sttts](https://github.com/sttts))
    * The main kubernetes repository stops hosting archived version of released clients. Please use [client-go](https://github.com/kubernetes/client-go). ([#35928](https://github.com/kubernetes/kubernetes/pull/35928), [@caesarxuchao](https://github.com/caesarxuchao))
    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. src/net/http/server.go

    	// WriteHeader, to make sure we don't consume the
    	// remaining request body to try to advance to the next HTTP
    	// request. Instead, when this is set, we stop reading
    	// subsequent requests on this connection and stop reading
    	// input from it.
    	requestBodyLimitHit bool
    
    	// trailers are the headers to be sent after the handler
    	// finishes writing the body. This field is initialized from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    				<-pre.sema
    				if bp != nil && loaded && err == nil && !opts.IgnoreImports {
    					pre.preloadImports(ctx, opts, bp.Imports, bp)
    				}
    			}(path)
    		}
    	}
    }
    
    // flush stops pending preload operations. flush blocks until preload calls to
    // loadPackageData have completed. The preloader will not make any new calls
    // to loadPackageData.
    func (pre *preload) flush() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "x-kubernetes-preserve-unknown-fields": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    	}
    	if len(buckets) != 0 && len(res.Buckets) == len(buckets) {
    		return res, fmt.Errorf("all buckets resync failed")
    	}
    	return res, nil
    }
    
    // cancelResync stops an ongoing site level resync for the peer specified.
    func (c *SiteReplicationSys) cancelResync(ctx context.Context, objAPI ObjectLayer, peer madmin.PeerInfo) (res madmin.SRResyncOpStatus, err error) {
    	if !c.isEnabled() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top