Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,440 for poop (0.06 sec)

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

    )
    
    //go:generate msgp -file $GOFILE -unexported
    
    // rebalanceStats contains per-pool rebalance statistics like number of objects,
    // versions and bytes rebalanced out of a pool
    type rebalanceStats struct {
    	InitFreeSpace uint64 `json:"initFreeSpace" msg:"ifs"` // Pool free space at the start of rebalance
    	InitCapacity  uint64 `json:"initCapacity" msg:"ic"`   // Pool capacity at the start of rebalance
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/ref-while-loop.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s -o - | FileCheck %s
    
    // Verify the ops generated when Ref type is used in a while loop.
    func.func @main() {
      // CHECK:  op: "RefEnter"
      // CHECK:  op: "RefMerge"
      // CHECK:  op: "RefSwitch"
      // CHECK:  op: "RefExit"
      // CHECK:  op: "RefNextIteration"
      tf_executor.graph {
        %0:3 = tf_executor.NextIteration.Source : tensor<*x!tf_type.int32ref> {device = "", T = "tfdtype$DT_INT32"} loc("while/NextIteration")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/prop.go

    Bryan C. Mills <******@****.***> 1551453150 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/while-loop.mlir

    Adrian Kuegel <******@****.***> 1648469008 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-while-loop.pbtxt

    Andy Ly <******@****.***> 1598551625 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 18:14:13 UTC 2020
    - 3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/NestedConfigureAutoCreateNamedDomainObjectContainerSpec.groovy

                        m1 {
                            prop = "c2c1m1"
                        }
                    }
                }
            }
    
            then:
            parent.c1.c1c1.m1.prop == "c1c1m1"
            parent.c1.c1c1.m2.prop == "c1c1m2"
            parent.c1.c1c2.m1.prop == "c1c2m1"
            parent.c2.c2c1.m1.prop == "c2c1m1"
        }
    
        def "configure like method for object that doesn't support it produces error"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            configurationCacheRun 'ok', '-Dsome.prop=42'
    
            then:
            outputContains 'sys prop value at configuration time = 42'
            outputContains 'sys prop value at execution time = 42'
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun 'ok', '-Dsome.prop=42'
    
            then:
            outputDoesNotContain 'sys prop value at configuration time = 42'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. pilot/pkg/status/resourcelock.go

    // WorkerQueue implements an expandable goroutine pool which executes at most one concurrent routine per target
    // resource.  Multiple calls to Push() will not schedule multiple executions per target resource, but will ensure that
    // the single execution uses the latest value.
    type WorkerQueue interface {
    	// Push a task.
    	Push(target Resource, controller *Controller, context any)
    	// Run the loop until a signal on the context
    	Run(ctx context.Context)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. releasenotes/notes/dns-localhost-loop.yaml

    John Howard <******@****.***> 1612556881 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 05 20:28:01 UTC 2021
    - 246 bytes
    - Viewed (0)
  10. src/sync/pool_test.go

    		t.Fatalf("got %v; want 3", v)
    	}
    }
    
    // Test that Pool does not hold pointers to previously cached resources.
    func TestPoolGC(t *testing.T) {
    	testPool(t, true)
    }
    
    // Test that Pool releases resources on GC.
    func TestPoolRelease(t *testing.T) {
    	testPool(t, false)
    }
    
    func testPool(t *testing.T, drain bool) {
    	var p Pool
    	const N = 100
    loop:
    	for try := 0; try < 3; try++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top