Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 141 for iterations (0.36 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

      //
      // For the time being we are OK with the problem discussed above since it requires a caller to
      // introduce a very specific kind of data-race. And given the other operations performed by these
      // methods that involve volatile read/write operations, in practice there is no issue. Also, the
      // way in such a visibility issue would surface is most likely as a failure of cancel() to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. cmd/object-api-listobjects_test.go

    }
    
    func testListObjectsVersionedFolders(obj ObjectLayer, instanceType string, t1 TestErrHandler) {
    	t, _ := t1.(*testing.T)
    	testBuckets := []string{
    		// This bucket is used for testing ListObject operations.
    		"test-bucket-folders",
    		// This bucket has file delete marker.
    		"test-bucket-files",
    	}
    	for _, bucket := range testBuckets {
    		err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// UID is the unique in time and space value for this object. It is typically generated by
    	// the server on successful creation of a resource and is not allowed to change on PUT
    	// operations.
    	//
    	// Populated by the system.
    	// Read-only.
    	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Futures.java

      //
      // For the time being we are OK with the problem discussed above since it requires a caller to
      // introduce a very specific kind of data-race. And given the other operations performed by these
      // methods that involve volatile read/write operations, in practice there is no issue. Also, the
      // way in such a visibility issue would surface is most likely as a failure of cancel() to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    	// All object storage operations are registered as HTTP handlers on `objectAPIHandlers`.
    	// When the handlers get a HTTP request they use the underlying ObjectLayer to perform operations.
    	globalObjLayerMutex.Lock()
    	globalObjectAPI = objLayer
    	globalObjLayerMutex.Unlock()
    
    	// When cache is enabled, Put and Get operations are passed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

           (HasRankAtMost<4> $input),
           (HasRankAtMost<4> $lhs),
           (HasRankAtMost<4> $rhs),
           (IsDefinedByFullyConnectedOp $input)]>;
    }
    
    // Reorder the element-wise value operations and the element move operations,
    // such that the value operation happens before move operation.
    foreach ValueOp = [TFL_CeilOp, TFL_ExpOp, TFL_FloorOp, TFL_NegOp,
                       TFL_ReluOp, TFL_Relu1Op, TFL_Relu6Op, TFL_RoundOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      FuncOp outlined_func =
          FuncOp::create(ops.front()->getLoc(), kHostFunctionAttr, func_type);
    
      // Create function body.
      Block* outlined_func_block = outlined_func.addEntryBlock();
    
      // Clone the operations and remap the inputs to use the function arguments.
      IRMapping mapping;
      mapping.map(inputs, outlined_func.getArguments());
      builder->setInsertionPoint(outlined_func_block, outlined_func_block->begin());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

    import org.gradle.internal.code.UserCodeApplicationId
    import org.gradle.internal.code.UserCodeSource
    import org.gradle.internal.metaobject.ConfigureDelegate
    import org.gradle.internal.operations.TestBuildOperationRunner
    import org.gradle.util.TestUtil
    import org.gradle.util.internal.ConfigureUtil
    import org.hamcrest.CoreMatchers
    import spock.lang.Specification
    
    import static org.gradle.util.Matchers.hasMessage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// claimParametersIndexer has the common claimParametersGeneratedFrom indexer installed to
    	// limit iteration over claimParameters to those of interest.
    	claimParametersIndexer cache.Indexer
    	// classParametersIndexer has the common classParametersGeneratedFrom indexer installed to
    	// limit iteration over classParameters to those of interest.
    	classParametersIndexer cache.Indexer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    	maxTrampSize := int64(callCount * callTrampSize)
    
    	// Compute instruction addresses.  Once we do that, we need to check for
    	// overextended jumps and branches.  Within each iteration, Pc differences
    	// are always lower bounds (since the program gets monotonically longer,
    	// a fixed point will be reached).  No attempt to handle functions > 2GiB.
    	for {
    		big, rescan := false, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top