Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for Egrave (1.79 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonConnector.java

        /**
         * Mark the daemon as unavailable if the client cannot communicate with the daemon.
         *
         * This is not intended to be used for all communication errors, only the most grave.
         * For example, if the daemon is communicating in some way, but its responses
         * are empty or do not appear to be daemon messages.
         *
         * @param daemon the daemon that could not be communicated with
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (1)
  2. pkg/kubelet/config/common_test.go

    	"k8s.io/kubernetes/pkg/apis/core/validation"
    	"k8s.io/kubernetes/pkg/securitycontext"
    	"k8s.io/utils/ptr"
    )
    
    func noDefault(*core.Pod) error { return nil }
    
    func TestDecodeSinglePod(t *testing.T) {
    	grace := int64(30)
    	enableServiceLinks := v1.DefaultEnableServiceLinks
    	pod := &v1.Pod{
    		TypeMeta: metav1.TypeMeta{
    			APIVersion: "",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "test",
    			UID:       "12345",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting and proper that we should do this. But, in a larger sense, we can not dedicate - we can not consecrate - we can not hallow - this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  4. src/internal/testenv/exec.go

    			}
    
    			// If time allows, increase the termination grace period to 5% of the
    			// test's remaining time.
    			testTimeout := time.Until(td)
    			if gp := testTimeout / 20; gp > gracePeriod {
    				gracePeriod = gp
    			}
    
    			// When we run commands that execute subprocesses, we want to reserve two
    			// grace periods to clean up: one for the delay between the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/rest/delete.go

    		// check if the existing stored resource has a grace period as 0 and if so
    		// attempt to delete immediately in order to recover from this scenario.
    		if objectMeta.GetDeletionGracePeriodSeconds() == nil || *objectMeta.GetDeletionGracePeriodSeconds() == 0 {
    			return false, false, nil
    		}
    		// only a shorter grace period may be provided by a user
    		if options.GracePeriodSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 07 17:43:41 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  6. src/encoding/xml/example_test.go

    		Phone   string
    		Email   []Email
    		Groups  []string `xml:"Group>Value"`
    		Address
    	}
    	v := Result{Name: "none", Phone: "none"}
    
    	data := `
    		<Person>
    			<FullName>Grace R. Emlin</FullName>
    			<Company>Example Inc.</Company>
    			<Email where="home">
    				<Addr>******@****.***</Addr>
    			</Email>
    			<Email where='work'>
    				<Addr>******@****.***</Addr>
    			</Email>
    			<Group>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 3.7K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.DurationVar(&o.NodeStartupGracePeriod.Duration, "node-startup-grace-period", o.NodeStartupGracePeriod.Duration,
    		"Amount of time which we allow starting Node to be unresponsive before marking it unhealthy.")
    	fs.DurationVar(&o.NodeMonitorGracePeriod.Duration, "node-monitor-grace-period", o.NodeMonitorGracePeriod.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/types.go

    }
    
    // KillPodFunc kills a pod.
    // The pod status is updated, and then it is killed with the specified grace period.
    // This function must block until either the pod is killed or an error is encountered.
    // Arguments:
    // pod - the pod to kill
    // status - the desired status to associate with the pod (i.e. why its killed)
    // gracePeriodOverride - the grace period override to use instead of what is on the pod spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/init_text_file_to_import_test_pass.cc

      if (error_code) return signalPassFailure();
    
      llvm::ToolOutputFile temp_file(filename, fd);
      temp_file.os() << "apple\n";
      temp_file.os() << "banana\n";
      temp_file.os() << "grape";
      temp_file.os().flush();
    
      // Replace filename constant ops to use the temporary file.
      MLIRContext* context = &getContext();
    
      for (func::FuncOp func : module.getOps<func::FuncOp>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:19:38 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go

    // NewDeleteOptions returns a DeleteOptions indicating the resource should
    // be deleted within the specified grace period. Use zero to indicate
    // immediate deletion. If you would prefer to use the default grace period,
    // use &metav1.DeleteOptions{} directly.
    func NewDeleteOptions(grace int64) *DeleteOptions {
    	return &DeleteOptions{GracePeriodSeconds: &grace}
    }
    
    // NewPreconditionDeleteOptions returns a DeleteOptions with a UID precondition set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 10:58:36 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top