Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 742 for addAction (0.15 sec)

  1. logo/usage_guidelines.md

    helpful:
    >Certain marks of The Linux Foundation have been created to enable you to
    >communicate compatibility or interoperability of software or products. In
    >addition to the requirement that any use of a mark to make an assertion of
    >compatibility must, of course, be accurate, the use of these marks must
    >avoid confusion regarding The Linux Foundation’s association with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tpu_embedding_ops_registry.h

    //    }
    class TPUEmbeddingOpsRegistry {
     public:
      // Add the op to the registry.
      //
      // Adding an op here will allow use old bridge legalization from the MLIR
      // bridge with the use of fallback mechanism. Therefore, addition of any op
      // here must have a python test with MLIR bridge enabled to verify that the
      // fallback works correctly.
      template <typename OpType>
      void Add() {
        ops_type_ids_.insert(TypeID::get<OpType>());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 14 05:42:28 UTC 2022
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/OperationGenerationId.kt

     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.evaluation
    
    import java.io.Serializable
    
    
    /**
     * Represents the "generation" of a particular operation (either an addition function call or a property assignment operation).
     *
     * The order of generations is important as calls in later generations can override calls in earlier generations, but no the
     * other way around.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    	"fmt"
    	"reflect"
    
    	"gopkg.in/evanphx/json-patch.v4"
    	"k8s.io/apimachinery/pkg/util/json"
    	"k8s.io/apimachinery/pkg/util/mergepatch"
    )
    
    // Create a 3-way merge patch based-on JSON merge patch.
    // Calculate addition-and-change patch between current and modified.
    // Calculate deletion patch between original and modified.
    func CreateThreeWayJSONMergePatch(original, modified, current []byte, fns ...mergepatch.PreconditionFunc) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/conventions.kt

        override fun apply(receiver: AssignmentRecordConventionReceiver) {
            receiver.receive(assignmentRecord)
        }
    }
    
    
    /**
     * A convention that applies a data addition operation (e.g. addFoo("bar")).
     */
    class AdditionRecordConvention(private val dataAdditionRecord: DataAdditionRecord) :
        Convention<AdditionRecordConventionReceiver> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyArtifactSelector.java

     * Artifact selections are handy as a migration path from the Maven or Ivy ecosystem,
     * where different "variants" are actually represented as different artifacts, with
     * specific (type, extension, classifier) sub-coordinates, in addition to the GAV
     * (group, artifact, version) coordinates.
     *
     * It is preferable to use component metadata rules to properly describe the variants
     * of a module, so this variant selector should only be used when defining such rules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/tests/outgoingVariants.out

              - build/resources/main (artifactType = java-resources-directory)
    
    
    (*) Secondary variants are variants created via the Configuration#getOutgoing(): ConfigurationPublications API which also participate in selection, in addition to the configuration itself.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. samples/websockets/README.md

    The `app.yaml` creates a Kubernetes `Service` and a `Deployment` that is based on an existing Docker image for [Hiroakis's Tornado Websocket Example](https://github.com/hiroakis/tornado-websocket-example).
    
    __Notice:__ The addition of websockets upgrade support in v1alpha3 routing rules has only been added after the release of `Istio v0.8.0`.
    
    ## Prerequisites
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/bug_report.md

    <!--- If suggesting a change/improvement, explain the difference from current behavior -->
    
    ## Possible Solution
    <!--- Not obligatory, but suggest a fix/reason for the bug, -->
    <!--- or ideas how to implement the addition or change -->
    
    ## Steps to Reproduce (for bugs)
    <!--- Provide a link to a live example, or an unambiguous set of steps to -->
    <!--- reproduce this bug. Include code to reproduce, if relevant -->
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:37:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

         *  - The module's content roots are being changed, such as adding another source folder to a source module.
         *  - If module A depends on module B and module B is being removed, in addition to the removal event for module B, module A also
         *    receives an update event.
         */
        UPDATE,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top