Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,358 for bundles (0.24 sec)

  1. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/java/org/gradle/samples/MainActivity.java

    package org.gradle.samples;
    
    import androidx.appcompat.app.AppCompatActivity;
    
    import android.os.Bundle;
    
    public class MainActivity extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            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
    - 332 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/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/compiler/mlir/tensorflow/tests/graphdef2mlir/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
    - 1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/debuginfo/BUILD

        test_file_exts = [
            "pbtxt",
            #        "py", TODO(b/150304798)
        ],
    )
    
    # Bundle together all the debug info files that are used by the tests.
    filegroup(
        name = "debug_info_files",
        srcs = glob(
            ["**/*.debug"],
        ),
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 26 21:40:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. samples/security/spire/spire-quickstart.yaml

    - apiGroups: [""]
      resources: ["pods"]
      verbs: ["get"]
      # allow access to "get" and "patch" the spire-bundle ConfigMap (for SPIRE
      # agent bootstrapping, see the spire-bundle ConfigMap)
    - apiGroups: [""]
      resources: ["configmaps"]
      resourceNames: ["spire-bundle"]
      verbs: ["get", "patch"]
    
    ---
    # RoleBinding granting the spire-server-role to the SPIRE server
    # service account.
    kind: RoleBinding
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    	if len(purpose) == 0 {
    		return nil, fmt.Errorf("missing purpose for ca bundle")
    	}
    	if len(namespace) == 0 {
    		return nil, fmt.Errorf("missing namespace for ca bundle")
    	}
    	if len(name) == 0 {
    		return nil, fmt.Errorf("missing name for ca bundle")
    	}
    	if len(key) == 0 {
    		return nil, fmt.Errorf("missing key for ca bundle")
    	}
    	caContentName := fmt.Sprintf("%s::%s::%s::%s", purpose, namespace, name, key)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top