Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,440 for poop (0.05 sec)

  1. cmd/erasure-server-pool-decom_gen.go

    Harshavardhana <******@****.***> 1656968574 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  2. src/main/assemblies/files/fess

    #    -v            print fess version, then exit
    #    -D prop       set JAVA system property
    #    -X prop       set non-standard JAVA system property
    #   --prop=val
    #   --prop val     set fess property (i.e.  -Des.<prop>=<val>)
    
    CDPATH=""
    SCRIPT="$0"
    
    # SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path.
    while [ -h "$SCRIPT" ] ; do
      ls=`ls -ld "$SCRIPT"`
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/internal/poll/splice_linux.go

    // splicePipePool caches pipes to avoid high-frequency construction and destruction of pipe buffers.
    // The garbage collector will free all pipes in the sync.Pool periodically, thus we need to set up
    // a finalizer for each pipe to close its file descriptors before the actual GC.
    var splicePipePool = sync.Pool{New: newPoolPipe}
    
    func newPoolPipe() any {
    	// Discard the error which occurred during the creation of pipe buffer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/scale_int.go

    limitations under the License.
    */
    
    package resource
    
    import (
    	"math"
    	"math/big"
    	"sync"
    )
    
    var (
    	// A sync pool to reduce allocation.
    	intPool  sync.Pool
    	maxInt64 = big.NewInt(math.MaxInt64)
    )
    
    func init() {
    	intPool.New = func() interface{} {
    		return &big.Int{}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 20:41:44 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

            when:
            container.create('obj') {
                prop = 'value'
            }
    
            then:
            container.obj.prop == 'value'
        }
    
        def "can create and configure object using action"() {
            def action = Mock(Action)
    
            given:
            action.execute(_) >> { TestObject obj ->
                obj.prop = 'value'
            }
    
            when:
            container.create('obj', action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool-rebalance_gen_test.go

    Krishnan Parthasarathi <******@****.***> 1666726617 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 19:36:57 UTC 2022
    - 11K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

          }
        }
      });
    }
    
    // tf.NoOp islands are used to combine multiple control dependencies into one.
    // These islands have a single tf.NoOp inside them and consume multiple control
    // outputs to generate a single control output.
    //
    // For example,
    // ```
    // %merged_control = "tf_executor.island"(%control_a, %control_b) ({
    //   "tf.NoOp"() : () -> ()
    //   "tf_executor.yield"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool-decom_gen_test.go

    Harshavardhana <******@****.***> 1641955723 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 12 02:48:43 UTC 2022
    - 11K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool-rebalance_gen.go

    Krishnan Parthasarathi <******@****.***> 1711041695 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. test/chan/sieve2.go

    	composites := make(chan int, 50)
    
    	// The feedback loop.
    	primes := make(chan int, 10)
    	primes <- 3
    
    	// Merge channels of multiples of 'primes' into 'composites'.
    	go func() {
    		var h PeekChHeap
    		min := 15
    		for {
    			m := multiples(<-primes)
    			head := <-m
    			for min < head {
    				composites <- min
    				minchan := heap.Pop(&h).(*PeekCh)
    				min = minchan.head
    				minchan.head = <-minchan.ch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 3.9K bytes
    - Viewed (0)
Back to top