Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 228 for Egrave (0.24 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // Value must be non-negative integer. The value zero indicates delete immediately.
      // If this value is nil, the default grace period will be used instead.
      // The grace period is the duration in seconds after the processes running in the carp are sent
      // a termination signal and the time when the processes are forcibly halted with a kill signal.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue23912.go

    // compile
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // A couple of aliases cases that gccgo incorrectly gave errors for.
    
    package p
    
    func F1() {
    	type E = struct{}
    	type X struct{}
    	var x X
    	var y E = x
    	_ = y
    }
    
    func F2() {
    	type E = struct{}
    	type S []E
    	type T []struct{}
    	type X struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 01:57:14 UTC 2018
    - 516 bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/types.go

    	Limits   v1.ResourceList
    }
    
    // ShutdownGracePeriodByPodPriority specifies the shutdown grace period for Pods based on their associated priority class value
    type ShutdownGracePeriodByPodPriority struct {
    	// priority is the priority value associated with the shutdown grace period
    	Priority int32
    	// shutdownGracePeriodSeconds is the shutdown grace period in seconds
    	ShutdownGracePeriodSeconds int64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// Value must be non-negative integer. The value zero indicates delete immediately.
    	// If this value is nil, the default grace period will be used instead.
    	// The grace period is the duration in seconds after the processes running in the carp are sent
    	// a termination signal and the time when the processes are forcibly halted with a kill signal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.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
    }
    
    // DelegationTarget is an interface which allows for composition of API servers with top level handling that works
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    }
    
    // DeepEqualSafePodSpec returns an example.PodSpec safe for deep-equal operations.
    func DeepEqualSafePodSpec() example.PodSpec {
    	grace := int64(30)
    	return example.PodSpec{
    		RestartPolicy:                 "Always",
    		TerminationGracePeriodSeconds: &grace,
    		SchedulerName:                 "default-scheduler",
    	}
    }
    
    func computePodKey(obj *example.Pod) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  7. security/pkg/credentialfetcher/plugin/gce_test.go

    		jwt            string
    		now            time.Time
    		expectedRotate bool
    	}{
    		"remaining life time is in grace period": {
    			jwt:            thirdPartyJwt,
    			now:            jwtExp.Add(time.Duration(-10) * time.Minute),
    			expectedRotate: true,
    		},
    		"remaining life time is not in grace period": {
    			jwt:            thirdPartyJwt,
    			now:            jwtExp.Add(time.Duration(-30) * time.Minute),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 10.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // Value must be non-negative integer. The value zero indicates delete immediately.
      // If this value is nil, the default grace period will be used instead.
      // The grace period is the duration in seconds after the processes running in the carp are sent
      // a termination signal and the time when the processes are forcibly halted with a kill signal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    0209          ; valid                                  # 1.1  LATIN SMALL LETTER I WITH DOUBLE GRAVE
    020A          ; mapped                 ; 020B          # 1.1  LATIN CAPITAL LETTER I WITH INVERTED BREVE
    020B          ; valid                                  # 1.1  LATIN SMALL LETTER I WITH INVERTED BREVE
    020C          ; mapped                 ; 020D          # 1.1  LATIN CAPITAL LETTER O WITH DOUBLE GRAVE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  10. src/cmd/go/scriptcmds_test.go

    	"strings"
    	"sync"
    	"time"
    )
    
    func scriptCommands(interrupt os.Signal, waitDelay time.Duration) map[string]script.Cmd {
    	cmds := scripttest.DefaultCmds()
    
    	// Customize the "exec" interrupt signal and grace period.
    	var cancel func(cmd *exec.Cmd) error
    	if interrupt != nil {
    		cancel = func(cmd *exec.Cmd) error {
    			return cmd.Process.Signal(interrupt)
    		}
    	}
    
    	cmdExec := script.Exec(cancel, waitDelay)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 18:33:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top