Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for makeRule (0.14 sec)

  1. pkg/test/fakes/gce_metadata_server/Makefile

    John Howard <******@****.***> 1701730072 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. tests/integration/security/fuzz/fuzzers/jwt_tool/Makefile

    Yangmin Zhu <******@****.***> 1624305961 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 701 bytes
    - Viewed (0)
  3. cluster/gce/gci/mounter/Makefile

    Xiang Dai <******@****.***> 1550799831 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 862 bytes
    - Viewed (0)
  4. cluster/images/etcd-version-monitor/Makefile

    Humble Chirammal <******@****.***> 1683780644 +0530
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 07:06:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. tools/certs/Makefile.k8s.mk

    YonkaFang <******@****.***> 1703682929 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/groovy/producer/build.gradle

    def makeFile = tasks.register("makeFile") {
        def sharedFile = layout.buildDirectory.file("some-subdir/shared-file.txt")
        outputs.file(sharedFile)
        doFirst {
            sharedFile.get().asFile << "This file is shared across Gradle subprojects."
        }
    }
    
    configurations {
        sharedConfiguration {
            canBeResolved = false
        }
    }
    
    artifacts {
        sharedConfiguration(makeFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 389 bytes
    - Viewed (0)
  7. tools/certs/README.md

    - `Makefile.k8s.mk`: Creates certificates based on a root-ca from a k8s cluster. The current context in the default
    `kubeconfig` is used for accessing the cluster.
    - `Makefile.selfsigned.mk`: Creates certificates based on a generated self-signed root.
    
    The table below describes the targets supported by both Makefiles.
    
    Make Target | Makefile | Description
    ------ | -------- | -----------
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 17 20:29:15 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  8. hack/boilerplate/boilerplate.Makefile.txt

    David McMahon <******@****.***> 1464913558 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 30 00:47:36 UTC 2016
    - 588 bytes
    - Viewed (0)
  9. tools/certs/Makefile.selfsigned.mk

    jacob-delgado <******@****.***> 1669664949 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 28 19:49:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/kotlin/producer/build.gradle.kts

    val makeFile = tasks.register("makeFile") {
        val sharedFile = layout.buildDirectory.file("some-subdir/shared-file.txt")
        outputs.file(sharedFile)
        doFirst {
            sharedFile.get().asFile.writeText("This file is shared across Gradle subprojects.")
        }
    }
    
    val sharedConfiguration by configurations.creating {
        isCanBeResolved = false
    }
    
    artifacts {
        add(sharedConfiguration.name, makeFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
Back to top