Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 163 for Egrave (1.36 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. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	// a copy of root cert from config map for verification.
    	certItem0 := loadCert(rotator)
    
    	// Change grace period percentage to 0, so that root cert is not going to expire soon.
    	rotator.config.certInspector = certutil.NewCertUtil(0)
    	rotator.checkAndRotateRootCert()
    	// Verifies that when root cert remaining life is not in grace period time,
    	// root cert is not rotated.
    	certItem1 := loadCert(rotator)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/map.go

    	// # (of the accents used in Lithuanian: grave, acute, tilde above, and ogonek)
    	// # 0049; 0069 0307; 0049; 0049; lt More_Above; # LATIN CAPITAL LETTER I
    	// # 004A; 006A 0307; 004A; 004A; lt More_Above; # LATIN CAPITAL LETTER J
    	// # 012E; 012F 0307; 012E; 012E; lt More_Above; # LATIN CAPITAL LETTER I WITH OGONEK
    	// # 00CC; 0069 0307 0300; 00CC; 00CC; lt; # LATIN CAPITAL LETTER I WITH GRAVE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. 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)
  6. pkg/credentialprovider/keyring_test.go

    		Email:    "******@****.***",
    	}
    
    	grace := AuthConfig{
    		Username: "grace",
    		Password: "squash", // Fake value for testing.
    		Email:    "grace@example.com",
    	}
    
    	dk := &BasicDockerKeyring{}
    	dk.Add(DockerConfig{
    		"bar.example.com/pong": DockerConfigEntry{
    			Username: grace.Username,
    			Password: grace.Password,
    			Email:    grace.Email,
    		},
    		"bar.example.com": DockerConfigEntry{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	// track of active watch request(s) in flight and will not wait
    	// for them to drain, this maintains backward compatibility.
    	// This grace period is orthogonal to other grace periods, and
    	// it is not overridden by any other grace period.
    	ShutdownWatchTerminationGracePeriod time.Duration
    }
    
    func NewServerRunOptions() *ServerRunOptions {
    	defaults := server.NewConfig(serializer.CodecFactory{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/script_test.go

    		// If time allows, increase the termination grace period to 5% of the
    		// remaining time.
    		if gp := timeout / 20; gp > gracePeriod {
    			gracePeriod = gp
    		}
    
    		// When we run commands that execute subprocesses, we want to reserve two
    		// grace periods to clean up. We will send the first termination signal when
    		// the context expires, then wait one grace period for the process to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. 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)
Back to top