Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for rduration (0.32 sec)

  1. src/os/exec/exec_test.go

    	exitOnInterrupt := fs.Bool("interrupt", false, "if true, commands should exit 0 on os.Interrupt")
    	subsleep := fs.Duration("subsleep", 0, "amount of time for the 'hang' helper to leave an orphaned subprocess sleeping with stderr open")
    	probe := fs.Duration("probe", 0, "if nonzero, the 'hang' helper should write to stderr at this interval, and exit nonzero if a write fails")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	masqueradingChain = "masquerading"
    )
    
    // NewDualStackProxier creates a MetaProxier instance, with IPv4 and IPv6 proxies.
    func NewDualStackProxier(
    	ctx context.Context,
    	syncPeriod time.Duration,
    	minSyncPeriod time.Duration,
    	masqueradeAll bool,
    	masqueradeBit int,
    	localDetectors map[v1.IPFamily]proxyutil.LocalTrafficDetector,
    	hostname string,
    	nodeIPs map[v1.IPFamily]net.IP,
    	recorder events.EventRecorder,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. src/os/exec.go

    }
    
    // UserTime returns the user CPU time of the exited process and its children.
    func (p *ProcessState) UserTime() time.Duration {
    	return p.userTime()
    }
    
    // SystemTime returns the system CPU time of the exited process and its children.
    func (p *ProcessState) SystemTime() time.Duration {
    	return p.systemTime()
    }
    
    // Exited reports whether the program has exited.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. internal/grid/muxclient.go

    	closed             bool
    	stateless          bool
    	acked              bool
    	init               bool
    	deadline           time.Duration
    	outBlock           chan struct{}
    	subroute           *subHandlerID
    	respErr            atomic.Pointer[error]
    	clientPingInterval time.Duration
    }
    
    // Response is a response from the server.
    type Response struct {
    	Msg []byte
    	Err error
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    	c := &cluster.Cluster{
    		Name:                 util.BlackHoleCluster,
    		ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_STATIC},
    		ConnectTimeout:       proto.Clone(cb.req.Push.Mesh.ConnectTimeout).(*durationpb.Duration),
    		LbPolicy:             cluster.Cluster_ROUND_ROBIN,
    	}
    	return c
    }
    
    // generates a cluster that sends traffic to the original destination.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{server,endpoint}}",
              "refId": "A"
            }
          ],
          "title": "Link Downtime Duration (sec)",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging_test.go

    								"bytes_sent":                     {Kind: &structpb.Value_StringValue{StringValue: "%BYTES_SENT%"}},
    								"duration":                       {Kind: &structpb.Value_StringValue{StringValue: "%DURATION%"}},
    								"upstream_service_time":          {Kind: &structpb.Value_StringValue{StringValue: "%RESP(X-ENVOY-UPSTREAM-SERVICE-TIME)%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. pkg/security/security.go

    	// - k8s.io/NAME
    	// - custom - requires Istiod TLS certs to be available as files
    	// - none
    	//
    	// This is used only in agent.
    	PilotCertProvider string
    
    	// secret TTL.
    	SecretTTL time.Duration
    
    	// The ratio of cert lifetime to refresh a cert. For example, at 0.10 and 1 hour TTL,
    	// we would refresh 6 minutes before expiration.
    	SecretRotationGracePeriodRatio float64
    
    	// STS port
    	STSPort int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. cmd/batch-job-common-types.go

    // BatchJobRetry stores retry configuration used in the event of failures.
    type BatchJobRetry struct {
    	line, col int
    	Attempts  int           `yaml:"attempts" json:"attempts"` // number of retry attempts
    	Delay     time.Duration `yaml:"delay" json:"delay"`       // delay between each retries
    }
    
    var _ yaml.Unmarshaler = &BatchJobRetry{}
    
    // UnmarshalYAML - BatchJobRetry extends unmarshal to extract line, column information
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    		heartbeatClientConfig := *clientConfig
    		heartbeatClientConfig.Timeout = s.KubeletConfiguration.NodeStatusUpdateFrequency.Duration
    		// The timeout is the minimum of the lease duration and status update frequency
    		leaseTimeout := time.Duration(s.KubeletConfiguration.NodeLeaseDurationSeconds) * time.Second
    		if heartbeatClientConfig.Timeout > leaseTimeout {
    			heartbeatClientConfig.Timeout = leaseTimeout
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top