Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for eofline (0.17 sec)

  1. cmd/metrics-v2.go

    			linkOnline := MetricV2{
    				Description: getClusterRepLinkOnlineMD(),
    				VariableLabels: map[string]string{
    					"endpoint": ep,
    				},
    			}
    			online := Offline
    			if health.Online {
    				online = Online
    			}
    			linkOnline.Value = float64(online)
    			ml = append(ml, linkOnline)
    			offlineDuration := MetricV2{
    				Description: getClusterRepLinkCurrOfflineDurationMD(),
    				VariableLabels: map[string]string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	if dobj.VersionID != "" && rinfo.VersionPurgeStatus == Complete {
    		return
    	}
    	if globalBucketTargetSys.isOffline(tgt.EndpointURL()) {
    		replLogOnceIf(ctx, fmt.Errorf("remote target is offline for bucket:%s arn:%s", dobj.Bucket, tgt.ARN), "replication-target-offline-delete-"+tgt.ARN)
    		sendEvent(eventArgs{
    			BucketName: dobj.Bucket,
    			Object: ObjectInfo{
    				Bucket:       dobj.Bucket,
    				Name:         dobj.ObjectName,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    mpactXMLWriter.class package org.codehaus.plexus.util.xml; public synchronized class CompactXMLWriter extends PrettyPrintXMLWriter { public void CompactXMLWriter(java.io.PrintWriter); public void CompactXMLWriter(java.io.Writer); protected void endOfLine(); } org/codehaus/plexus/util/xml/PrettyPrintXMLWriter.class package org.codehaus.plexus.util.xml; public synchronized class PrettyPrintXMLWriter implements XMLWriter { private java.io.PrintWriter writer; private java.util.LinkedList elementStack;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      # Write the systemd service file for kubelet.
      cat <<EOF >/etc/systemd/system/kubelet.service
    [Unit]
    Description=Kubernetes kubelet
    Requires=network-online.target
    After=network-online.target
    
    [Service]
    Restart=always
    RestartSec=10
    EnvironmentFile=${kubelet_env_file}
    ExecStart=${kubelet_bin} \$KUBELET_OPTS
    
    [Install]
    WantedBy=multi-user.target
    EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    			if v2.LastOnline.After(v.LastOnline) || v2.LastOnline.IsZero() {
    				v2.Endpoint = v.Endpoint
    				v2.LastOnline = v.LastOnline
    				v2.Latency = v.Latency
    				v2.Online = v.Online
    				v2.TotalDowntime = v.TotalDowntime
    				v2.DeploymentID = v.DeploymentID
    			}
    			v2.ReplicatedCount += v.ReplicatedCount
    			v2.ReplicatedSize += v.ReplicatedSize
    			v2.Failed = v2.Failed.Add(v.Failed)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    			usage = madmin.Usage{Error: err.Error()}
    		}
    
    		// Fetching the backend information
    		backendInfo := objectAPI.BackendInfo()
    		// Calculate the number of online/offline disks of all nodes
    		var allDisks []madmin.Disk
    		for _, s := range servers {
    			allDisks = append(allDisks, s.Disks...)
    		}
    		onlineDisks, offlineDisks := getOnlineOfflineDisksStats(allDisks)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    		roots:         []string{globalSignRoot},
    		currentTime:   1382387896,
    		dnsName:       "secure.iddl.vt.edu",
    
    		expectedChains: [][]string{
    			{
    				"Technology-enhanced Learning and Online Strategies",
    				"Virginia Tech Global Qualified Server CA",
    				"Trusted Root CA G2",
    				"GlobalSign Root CA",
    			},
    		},
    	},
    	{
    		// Check that SHA-384 intermediates (which are popping up)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_generator.go

    			if customBlockVolumeMapper, ok := blockVolumeMapper.(volume.CustomBlockVolumeMapper); ok {
    				resizeOptions.DeviceStagePath = customBlockVolumeMapper.GetStagingPath()
    			}
    		}
    
    		// if we are doing online expansion then volume is already published
    		resizeDone, eventErr, detailedErr = og.doOnlineExpansion(volumeToMount, actualStateOfWorld, resizeOptions)
    		if eventErr != nil || detailedErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    			}
    		}
    		if found {
    			continue
    		}
    		// if no container is found, then assuming it should be waiting seems plausible, but the status code requires
    		// that a previous termination be present.  If we're offline long enough or something removed the container, then
    		// the previous termination may not be present.  This next code block ensures that if the container was previously running
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    	defer func() {
    		for k, v := range db.lastPut {
    			t.Logf("%p: %v", k, v)
    		}
    	}()
    
    	db.SetMaxOpenConns(maxOpen)
    	db.SetMaxIdleConns(0)
    
    	errOffline := errors.New("db offline")
    
    	defer func() { setHookOpenErr(nil) }()
    
    	errs := make(chan error, tryOpen)
    
    	var opening sync.WaitGroup
    	opening.Add(tryOpen)
    
    	setHookOpenErr(func() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top