Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 463 for b0Bundle (0.24 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/tests/cacheableBundleTask.sample.conf

    commands: [{
        executable: gradle
        args: "bundle clean"
        flags: --build-cache
    },{
        executable: gradle
        args: "bundle printBundle"
        flags: --build-cache
        expected-output-file: cacheableBundleTask.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 256 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/main/kotlin/org/gradle/kotlin/dsl/samples/androidstudio/MainActivity.kt

    package org.gradle.kotlin.dsl.samples.androidstudio
    
    import android.support.v7.app.AppCompatActivity
    import android.os.Bundle
    
    class MainActivity : AppCompatActivity() {
    
        override fun onCreate(savedInstanceState: Bundle?) {
            super.onCreate(savedInstanceState)
            setContentView(R.layout.activity_main)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 326 bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/loader.h

                          const std::unordered_set<string>& tags,
                          SavedModelBundle* bundle);
    
    /// Loads a SavedModel from the specified export directory. The MetaGraphDef
    /// to be loaded is identified by the supplied tags, corresponding exactly to
    /// the set of tags used at SavedModel build time. Stores a SavedModel bundle
    /// in *bundle with a session created from the requested MetaGraphDef if found.
    ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/end2end/BUILD

        tags_override = {
            "add.pbtxt": ["no_rocm"],
            "conv_2d.pbtxt": ["no_rocm"],
            "fake_quant_per_channel.pbtxt": ["no_rocm"],
        },
        test_file_exts = [
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir/lite:flatbuffer_to_string",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pkg/fuzz/README.md

    Here is an example:
    
    ```go
    // Define a new fuzzer. Must have Fuzz prefix
    func FuzzBuildHTTP(f *testing.F) {
      fuzz.Fuzz(f, func(fg fuzz.Helper) {
        // Setup a few structs for testing
        bundle := fuzz.Struct[trustdomain.Bundle](fg)
            // This one has a custom validator
        push := fuzz.Struct[*model.PushContext](fg, validatePush)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 21:25:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/VersionCatalogBuilder.java

        /**
         * Declares a bundle of dependencies. A bundle consists of a name for the bundle,
         * and a list of aliases. The aliases must correspond to aliases defined via
         * the {@code library()} methods.
         *
         * @param alias the alias of the bundle
         * @param aliases the aliases of the dependencies included in the bundle
         * @see #library(String, String, String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/batch_use_same_function/BUILD

        test_file_exts = ["pbtxt"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-mlir-translate",
            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
        ],
    )
    
    # Bundle together all the debug info files that are used by the tests.
    filegroup(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 905 bytes
    - Viewed (0)
  8. maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/src/main/mdo/remote-resources.mdo

    specific language governing permissions and limitations
    under the License.
    -->
    
    <model>
      <id>remoteResourcesBundle</id>
      <name>RemoteResourcesBundle</name>
      <description>
        A bundle of remote resources.
        This is the model specification for remote-resources.xml.
      </description>
      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.plugin.resources.remote</value>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	// key cert bundle.
    	if bytes.Equal(oldRootCert, rotator.ca.keyCertBundle.GetRootCertPem()) {
    		t.Error("root cert in key cert bundle should be different after rotation.")
    	}
    	if !bytes.Equal(certItem1.caSecret.Data[CACertFile], rotator.ca.keyCertBundle.GetRootCertPem()) {
    		t.Error("root cert in key cert bundle should be the same as root " +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. okhttp-urlconnection/build.gradle.kts

      id("com.vanniktech.maven.publish.base")
      id("binary-compatibility-validator")
    }
    
    project.applyOsgi(
      "Fragment-Host: com.squareup.okhttp3; bundle-version=\"\${range;[==,+);\${version_cleanup;${projects.okhttp.version}}}\"",
      "Automatic-Module-Name: okhttp3.urlconnection",
      "Bundle-SymbolicName: com.squareup.okhttp3.urlconnection",
      "-removeheaders: Private-Package"
    )
    
    dependencies {
      api(projects.okhttp)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 16:20:29 UTC 2023
    - 764 bytes
    - Viewed (0)
Back to top