Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for pings (0.23 sec)

  1. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    and therefore the Theory of deriving these Rings from the thickness of the Plate of Glass of which the Speculum was made, and from the Obliquity of the emerging Rays agrees with the Observation. In this Computation I have equalled the Diameters of the bright Rings made by Light of all Colours, to the Diameters of the Rings made by the bright yellow. For this yellow makes the brightest Part of the Rings of all Colours. If you desire the Diameters of the Rings made by the Light of any other unmix'd Colour,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    }
    
    func TestPing(t *testing.T) {
    	driver := &pingDriver{}
    	Register("ping", driver)
    
    	db, err := Open("ping", "ignored")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if err := db.Ping(); err != nil {
    		t.Errorf("err was %#v, expected nil", err)
    		return
    	}
    
    	driver.fails = true
    	if err := db.Ping(); err != pingError {
    		t.Errorf("err was %#v, expected pingError", err)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	if err != nil {
    		return err
    	}
    
    	return db.pingDC(ctx, dc, dc.releaseConn)
    }
    
    // Ping verifies a connection to the database is still alive,
    // establishing a connection if necessary.
    //
    // Ping uses [context.Background] internally; to specify the context, use
    // [DB.PingContext].
    func (db *DB) Ping() error {
    	return db.PingContext(context.Background())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    she found to be nothing but the tops of the trees under which she
    had been wandering, when a sharp hiss made her draw back in a
    hurry:  a large pigeon had flown into her face, and was beating
    her violently with its wings.
    
      `Serpent!' screamed the Pigeon.
    
      `I'm NOT a serpent!' said Alice indignantly.  `Let me alone!'
    
      `Serpent, I say again!' repeated the Pigeon, but in a more
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    she found to be nothing but the tops of the trees under which she
    had been wandering, when a sharp hiss made her draw back in a
    hurry:  a large pigeon had flown into her face, and was beating
    her violently with its wings.
    
      `Serpent!' screamed the Pigeon.
    
      `I'm NOT a serpent!' said Alice indignantly.  `Let me alone!'
    
      `Serpent, I say again!' repeated the Pigeon, but in a more
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // pictures : 2014-03-06 Binky Moon, LLC
    pictures
    
    // pid : 2015-01-08 Top Level Spectrum, Inc.
    pid
    
    // pin : 2014-12-18 Amazon Registry Services, Inc.
    pin
    
    // ping : 2015-06-11 Ping Registry Provider, Inc.
    ping
    
    // pink : 2013-10-01 Identity Digital Limited
    pink
    
    // pioneer : 2015-07-16 Pioneer Corporation
    pioneer
    
    // pizza : 2014-06-26 Binky Moon, LLC
    pizza
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. okhttp-android/src/main/baseline-prof.txt

    Lokhttp3/internal/http2/Http2Connection$ReaderRunnable$applyAndAckSettings$1$1$2;
    Lokhttp3/internal/http2/Http2Connection$ReaderRunnable$headers$1$1;
    Lokhttp3/internal/http2/Http2Connection$ReaderRunnable$ping$2;
    Lokhttp3/internal/http2/Http2Connection$ReaderRunnable$settings$1;
    Lokhttp3/internal/http2/Http2Connection$ReaderRunnable;
    Lokhttp3/internal/http2/Http2Connection$pushDataLater$1;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// Check this before trusting a response from the node lister.
    	nodeHasSynced cache.InformerSynced
    	// a list of node labels to register
    	nodeLabels map[string]string
    
    	// Last timestamp when runtime responded on ping.
    	// Mutex is used to protect this value.
    	runtimeState *runtimeState
    
    	// Volume plugins.
    	volumePluginMgr *volume.VolumePluginMgr
    
    	// Manages container health check results.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    		if err != nil {
    			return wrapSRErr(err)
    		}
    		return nil
    	}
    
    	return nil
    }
    
    // PeerBucketMetadataUpdateHandler - merges the bucket metadata, save and ping other nodes
    func (c *SiteReplicationSys) PeerBucketMetadataUpdateHandler(ctx context.Context, item madmin.SRBucketMeta) error {
    	objectAPI := newObjectLayerFn()
    	if objectAPI == nil {
    		return errSRObjectLayerNotReady
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    func runqput(pp *p, gp *g, next bool) {
    	if !haveSysmon && next {
    		// A runnext goroutine shares the same time slice as the
    		// current goroutine (inheritTime from runqget). To prevent a
    		// ping-pong pair of goroutines from starving all others, we
    		// depend on sysmon to preempt "long-running goroutines". That
    		// is, any set of goroutines sharing the same time slice.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top