Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 166 for pirates (0.19 sec)

  1. pkg/registry/core/service/ipallocator/controller/repairip.go

    //
    // Handles:
    // * Duplicate ClusterIP assignments caused by operator action or undetected race conditions
    // * Allocations to services that were not actually created due to a crash or powerloss
    // * Migrates old versions of Kubernetes services into the new ipallocator automatically
    //   creating the corresponding IPAddress objects
    // * IPAddress objects with wrong references or labels
    //
    // Logs about:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

          // The side effects of the If op might not be executed without an
          // explicit control dependency on the tf.If op, due to the way the
          // LowerFunctionalOpsPass in TF operates (b/185483669). Check that we
          // output an explicit control dependency on the tf.If op in this case to
          // be on the safe side.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        double actualReportedFpp = bf.expectedFpp();
        assertEquals(expectedReportedFpp, actualReportedFpp, 0.00033);
      }
    
      /** Sanity checking with many combinations of false positive rates and expected insertions */
      public void testBasic() {
        for (double fpr = 0.0000001; fpr < 0.1; fpr *= 10) {
          for (int expectedInsertions = 1; expectedInsertions <= 10000; expectedInsertions *= 10) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm.go

    // the curve, it returns nil and an error, and the receiver is unchanged.
    // Otherwise, it returns p.
    func (p *P256Point) SetBytes(b []byte) (*P256Point, error) {
    	// p256Mul operates in the Montgomery domain with R = 2²⁵⁶ mod p. Thus rr
    	// here is R in the Montgomery domain, or R×R mod p. See comment in
    	// P256OrdInverse about how this is used.
    	rr := p256Element{0x0000000000000003, 0xfffffffbffffffff,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. test/chan/powser2.go

    }
    
    func mkdch2() *dch2 {
    	d2 := new(dch2)
    	d2[0] = mkdch()
    	d2[1] = mkdch()
    	return d2
    }
    
    // split reads a single demand channel and replicates its
    // output onto two, which may be read at different rates.
    // A process is created at first demand for an item and dies
    // after the item has been sent to both outputs.
    
    // When multiple generations of split exist, the newest
    // will service requests on one channel, which is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    // Rollback aborts the transaction.
    func (tx *Tx) Rollback() error {
    	return tx.rollback(false)
    }
    
    // PrepareContext creates a prepared statement for use within a transaction.
    //
    // The returned statement operates within the transaction and will be closed
    // when the transaction has been committed or rolled back.
    //
    // To use an existing prepared statement on this transaction, see [Tx.Stmt].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/cmd/internal/goobj/objfile.go

    // for reading and writing object files.
    
    // The object file is understood by the compiler, assembler, linker, and tools. They
    // have "high level" code that operates on object files, handling application-specific
    // logics, and use this package for the actual reading and writing. Specifically, the
    // code below:
    //
    // - cmd/internal/obj/objfile.go (used by cmd/asm and cmd/compile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/garbagecollector.go

    // to the API server to delete/update the objects accordingly.
    // Note that having the dependencyGraphBuilder notify the garbage collector
    // ensures that the garbage collector operates with a graph that is at least as
    // up to date as the notification is sent.
    type GarbageCollector struct {
    	restMapper     meta.ResettableRESTMapper
    	metadataClient metadata.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. cmd/metacache-set.go

    	partial func(entries metaCacheEntries, errs []error)
    
    	// finished will be called when all streams have finished and
    	// more than one disk returned an error.
    	// Will not be called if everything operates as expected.
    	finished func(errs []error)
    }
    
    // listPathRaw will list a path on the provided drives.
    // See listPathRawOptions on how results are delivered.
    // Directories are always returned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    	// Please refer to the issue for more context:
    	// https://github.com/kubernetes/kubernetes/issues/88355
    
    	// Below, vx is a volume name, and nx is a node name.
    
    	// Operation sequence:
    	// opZ(v0) starts (operates on a different volume from all other operations)
    	// op1(v1, n1) starts
    	// op2(v1, n2) starts
    	// opZ(v0) ends with success
    	// op2(v1, n2) ends with an error (exponential backoff should be triggered)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
Back to top