Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,633 for ioperation (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    //
    class ClusteringPolicy {
     public:
      virtual ~ClusteringPolicy() = default;
    
      // Returns success if an operation can be clustered given the constraints on
      // the operation results. Updates operands constraits to satisfy all the
      // results constraints.
      virtual LogicalResult MatchAndUpdateConstraints(
          Operation* operation, const ValuesConstraintSet& results,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/handler.go

    // support a predefined set of operations
    type Handler struct {
    	operations sets.String
    	readyFunc  ReadyFunc
    }
    
    // Handles returns true for methods that this handler supports
    func (h *Handler) Handles(operation Operation) bool {
    	return h.operations.Has(string(operation))
    }
    
    // NewHandler creates a new base handler that handles the passed
    // in operations
    func NewHandler(ops ...Operation) *Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 08:47:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/BiMap.java

       *     value.)
       */
      @CanIgnoreReturnValue
      @CheckForNull
      V forcePut(@ParametricNullness K key, @ParametricNullness V value);
    
      // Bulk Operations
    
      /**
       * {@inheritDoc}
       *
       * <p><b>Warning:</b> the results of calling this method may vary depending on the iteration order
       * of {@code map}.
       *
       * @throws IllegalArgumentException if an attempt to {@code put} any entry fails. Note that some
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/BiMap.java

       *     value.)
       */
      @CanIgnoreReturnValue
      @CheckForNull
      V forcePut(@ParametricNullness K key, @ParametricNullness V value);
    
      // Bulk Operations
    
      /**
       * {@inheritDoc}
       *
       * <p><b>Warning:</b> the results of calling this method may vary depending on the iteration order
       * of {@code map}.
       *
       * @throws IllegalArgumentException if an attempt to {@code put} any entry fails. Note that some
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

            def runTasks = events.operation("Run tasks")
            runTasks.descriptor.name == "Run tasks"
            runTasks.descriptor.parent == runTasksParent.descriptor
    
            events.operations[0] == runBuild
    
            events.operations.every { it.successful }
            events.operations.every { it.buildOperation }
        }
    
        def "receive build progress events for failed operations"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.cc

          res.push_back(op.getValue());
        }
        return res;
      }
    
      // Gets a pointer to the operation to be folded.
      Operation* Op() { return operation_; }
    
     private:
      explicit FoldAdaptor(Operation* operation) : operation_(operation) {}
      Operation* const operation_;
    };
    
    // APSInt provides operators which APInt does not, so allow for converting
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 06:11:55 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/dependencies/global-dependencies.md

        ```
    
    And all the ideas in the section about [adding `dependencies` to the *path operation decorators*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank} still apply, but in this case, to all of the *path operations* in the app.
    
    ## Dependencies for groups of *path operations*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/EventFiringTaskExecuterTest.groovy

            0 * taskExecutionListener._
            0 * taskListener._
    
            and:
            buildOperationRunner.operations[0].name == ":a"
            buildOperationRunner.operations[0].displayName == "Task :a"
            buildOperationRunner.operations[0].progressDisplayName == ":a"
            buildOperationRunner.operations[0].metadata == BuildOperationCategory.TASK
        }
    
        def "does not run task action when beforeExecute event fails"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildOperationStep.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.internal.operations.BuildOperationContext;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.operations.CallableBuildOperation;
    
    import java.util.function.Function;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/OpFiringRemoteBuildCacheServiceHandle.java

    import org.gradle.caching.internal.controller.operations.LoadOperationDetails;
    import org.gradle.caching.internal.controller.operations.LoadOperationHitResult;
    import org.gradle.caching.internal.controller.operations.LoadOperationMissResult;
    import org.gradle.caching.internal.controller.operations.StoreOperationDetails;
    import org.gradle.caching.internal.controller.operations.StoreOperationResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top