Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 316 for ioperation (0.21 sec)

  1. cmd/bucket-handlers.go

    	writeSuccessResponseXML(w, encodedSuccessResponse)
    }
    
    // HeadBucketHandler - HEAD Bucket
    // ----------
    // This operation is useful to determine if a bucket exists.
    // The operation returns a 200 OK if the bucket exists and you
    // have permission to access it. Otherwise, the operation might
    // return responses such as 404 Not Found and 403 Forbidden.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

    //       +---------------+
    //
    // Where S is the predicate for Init and X is the predicate that asserts that
    // Cond is true.  {S,&,X} states that Merge is live on the first "iteration" iff
    // S is true, live on the second iteration iff "S&X" is true, live on the third
    // iteration iff "S&X&X" is true etc.  There is a subtlety here, S&X&X would
    // normally be equivalent to S&X which isn't quite what we want to represent.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    // `attr_map` attributes in quantized function.
    LogicalResult TransferLocation(func::FuncOp float_func,
                                   func::FuncOp quantized_func) {
      Operation* main_op = nullptr;
      for (Operation& inner_op : float_func.getBody().front().getOperations()) {
        // Expect only one quantizable op in the composite function.
        if (IsOpWithQuantizableTrait(&inner_op)) {
          main_op = &inner_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// commit/revert function which will be called at the end of the operation,
    	// but before AfterCreate and Decorator, indicating via the argument
    	// whether the operation succeeded.  If this returns an error, the function
    	// is not called.  Almost nobody should use this hook.
    	BeginCreate BeginCreateFunc
    	// AfterCreate implements a further operation to run after a resource is
    	// created and before it is decorated, optional.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            val leftPsi = binaryExpression.left ?: return null
            val rightPsi = binaryExpression.right ?: return null
            return when (operation) {
                FirOperation.EQ, FirOperation.NOT_EQ -> {
                    val leftOperand = arguments.firstOrNull() ?: return null
    
                    val equalsSymbol = getEqualsSymbol() ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

           (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. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            then:
            noExceptionThrown()
    
            where:
            methods << getQueryMethods() + getMutatingMethods()
        }
    
        def "fires build operation when emitting added callback and reestablishes user code context"() {
            given:
            containerSupportsBuildOperations()
    
            UserCodeApplicationId id1 = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not
         * look at table entries if it is 0.
         *
         * - All (synchronized) write operations should write to the "count" field after structurally
         * changing any bin. The operations must not take any action that could even momentarily
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        /** Performs a GAS operation on the {@link #waiters} field. */
        abstract Waiter gasWaiters(AbstractFuture<?> future, Waiter update);
    
        /** Performs a GAS operation on the {@link #listeners} field. */
        abstract Listener gasListeners(AbstractFuture<?> future, Listener update);
    
        /** Performs a CAS operation on the {@link #value} field. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        /** Performs a GAS operation on the {@link #waiters} field. */
        abstract Waiter gasWaiters(AbstractFuture<?> future, Waiter update);
    
        /** Performs a GAS operation on the {@link #listeners} field. */
        abstract Listener gasListeners(AbstractFuture<?> future, Listener update);
    
        /** Performs a CAS operation on the {@link #value} field. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top