Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 240 for splay_ (0.13 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidCommunityPluginsSmokeTest.groovy

        private static final String BUGSNAG_PLUGIN_ID = 'com.bugsnag.android.gradle'
        private static final String FLADLE_PLUGIN_ID = 'com.osacky.fladle'
        private static final String TRIPLET_PLAY_PLUGIN_ID = 'com.github.triplet.play'
        private static final String SAFEARGS_PLUGIN_ID = 'androidx.navigation.safeargs'
        private static final String DAGGER_HILT_ANDROID_PLUGIN_ID = 'dagger.hilt.android.plugin'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/00-bug.yml

        id: what-did-you-do
        attributes:
          label: "What did you do?"
          description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is best."
        validations:
          required: true
    
      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/AbstractPlayExternalContinuousBuildIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.play.integtest.fixtures.external
    
    import org.gradle.api.JavaVersion
    import org.gradle.integtests.fixtures.AbstractContinuousIntegrationTest
    import org.gradle.integtests.fixtures.executer.ExecutionResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. docs/bucket/lifecycle/README.md

                    "Prefix": "temp/"
                },
                "Status": "Enabled"
            }
        ]
    }
    EOF
    ```
    
    ```
    Lifecycle configuration imported successfully to `play/testbucket`.
    ```
    
    - List the current settings
    
    ```
    $ mc ilm ls play/testbucket
         ID     |  Prefix  |  Enabled   | Expiry |  Date/Days   |  Transition  |    Date/Days     |  Storage-Class   |       Tags
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateTransposeCommuteOpsPass();
    
    // Create a pass that legalizes MHLO to TF dialect.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeHloToTfPass();
    
    // Creates a pass which replaces a splat constant tensor with a BroadcastInDim
    // op.
    std::unique_ptr<OperationPass<ModuleOp>> CreateUnfoldSplatConstantPass();
    
    // Create a pass that legalizes MHLO to TFLite dialect.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/PlayCoverage.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.play.integtest.fixtures
    
    import org.gradle.util.internal.VersionNumber
    
    import static org.gradle.api.JavaVersion.current
    
    class PlayCoverage {
        static final String DEFAULT_PLAY_VERSION = "2.7.9"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. test/fixedbugs/issue19555.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type NodeLink struct{}
    
    // A role our end of NodeLink is intended to play
    type LinkRole int64
    
    const (
    	LinkServer LinkRole = iota // link created as server
    	LinkClient                 // link created as client
    
    	// for testing:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 21:44:08 UTC 2017
    - 836 bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/Repositories.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.play.integtest.fixtures
    
    import org.gradle.integtests.fixtures.RepoScriptBlockUtil
    
    
    class Repositories {
        public static final String PLAY_REPOSITORIES = """
            repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

    #undef CONVERT_FLAT
    }
    
    // Returns the number of elements present in this TensorProto, or -1 if that
    // could not be determined. This might be less than the shape of the proto might
    // indicate, if we're storing a splat tensor.
    int NumberOfMaterializedElements(const TensorProto& tensor) {
      if (!tensor.tensor_content().empty()) return -1;
        // We don't know which element type this protocol buffer is storing, and the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.h

          return DenseElementsAttr::get(
              scalar_ty, static_cast<std::complex<double>>(raw_value));
        }
      }
      llvm_unreachable("unsupported type");
    }
    
    // Returns true if `value` is compile-time constant and its splat value equals
    // to `raw_value`.
    template <typename T>
    bool IsConstantValueOf(Value value, T raw_value) {
      auto element_type = mlir::cast<ShapedType>(value.getType()).getElementType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top