Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Stopping (0.24 sec)

  1. cmd/admin-handlers.go

    		if nerr.Err != nil {
    			logger.GetReqInfo(ctx).SetTags("peerAddress", nerr.Host.String())
    			adminLogIf(ctx, nerr.Err)
    		}
    	}
    
    	// Reply to the client before restarting, stopping MinIO server.
    	writeSuccessResponseHeadersOnly(w)
    
    	switch serviceSig {
    	case serviceFreeze:
    		freezeServices()
    	case serviceUnFreeze:
    		unfreezeServices()
    	case serviceRestart, serviceStop:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		if i < 0 {
    			return path
    		}
    		if bp, _ := cfg.BuildContext.Import(path[:i], "", build.IgnoreVendor); bp.Dir != "" {
    			if mpath := goModPath(bp.Dir); mpath != "" {
    				// Found a valid go.mod file, so we're stopping the search.
    				// If the path is m/v2/p and we found m/go.mod that says
    				// "module m/v2", then we return "m/p".
    				if mpath == path[:j] {
    					return path[:i] + path[j:]
    				}
    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

    		throw("bad g transition")
    	}
    	gp.waitreason = waitReasonPreempted
    	return gp.atomicstatus.CompareAndSwap(_Gpreempted, _Gwaiting)
    }
    
    // stwReason is an enumeration of reasons the world is stopping.
    type stwReason uint8
    
    // Reasons to stop-the-world.
    //
    // Avoid reusing reasons and add new ones instead.
    const (
    	stwUnknown                     stwReason = iota // "unknown"
    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. pkg/kubelet/kubelet.go

    				podsToSync = append(podsToSync, pod)
    				break
    			}
    		}
    	}
    	return podsToSync
    }
    
    // deletePod deletes the pod from the internal state of the kubelet by:
    // 1.  stopping the associated pod worker asynchronously
    // 2.  signaling to kill the pod by sending on the podKillingCh channel
    //
    // deletePod returns an error if not all sources are ready or the pod is not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    // other source of non-determinism in the call sequences.
    //
    // When faced with a new decision, x chooses randomly. Future explorations
    // of that path will choose successive values for the result. Thus, stopping
    // the loop after a fixed number of iterations gives somewhat stochastic
    // testing.
    //
    // Example:
    //
    //	for x.Next() {
    //		v := make([]bool, x.Choose(4))
    //		for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		t.Errorf("Expected: %v after Pop, but got: %v", medPriorityPodInfo.Pod.Name, p.Pod.Name)
    	}
    	// List of nominated pods shouldn't change after popping them from the queue.
    	if diff := cmp.Diff(q.nominator, expectedNominatedPods, nominatorCmpOpts...); diff != "" {
    		t.Errorf("Unexpected diff after popping pods (-want, +got):\n%s", diff)
    	}
    	// Update one of the nominated pods that doesn't have nominatedNodeName in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (auto tl_from_tensor = dyn_cast<TensorListFromTensorOp>(op))
        return tl_from_tensor.getElementShape();
      llvm_unreachable("unsupported TensorList op");
    }
    
    // Utility function to create a ranked tensor type after dropping the first
    // dimension from the input type.
    RankedTensorType DropFirstDimension(Type type) {
      RankedTensorType ranked_type = mlir::dyn_cast<RankedTensorType>(type);
      if (!ranked_type) return {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"ship":                                 "\U0001f6a2",
    	"shirt":                                "\U0001f455",
    	"shit":                                 "\U0001f4a9",
    	"shoe":                                 "\U0001f45e",
    	"shopping":                             "\U0001f6cd\ufe0f",
    	"shopping_cart":                        "\U0001f6d2",
    	"shorts":                               "\U0001fa73",
    	"shower":                               "\U0001f6bf",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    				"Virginia Tech Global Qualified Server CA",
    				"Trusted Root CA G2",
    				"GlobalSign Root CA",
    			},
    		},
    	},
    	{
    		// Check that SHA-384 intermediates (which are popping up)
    		// work.
    		name:          "SHA-384",
    		leaf:          trustAsiaLeaf,
    		intermediates: []string{trustAsiaSHA384Intermediate},
    		roots:         []string{digicertRoot},
    		currentTime:   1558051200,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. src/reflect/value.go

    	ptr := add(v.ptr, field.Offset, "same as non-reflect &v.field")
    	return Value{typ, ptr, fl}
    }
    
    // FieldByIndex returns the nested field corresponding to index.
    // It panics if evaluation requires stepping through a nil
    // pointer or a field that is not a struct.
    func (v Value) FieldByIndex(index []int) Value {
    	if len(index) == 1 {
    		return v.Field(index[0])
    	}
    	v.mustBe(Struct)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top