Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for MakeFile (0.34 sec)

  1. 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)
  2. 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)
  3. src/cmd/cgo/internal/testerrors/badsym_test.go

    		}
    		return ret
    	}
    
    	cdir := mkdir("c")
    	godir := mkdir("go")
    
    	makeFile := func(mdir, base, source string) string {
    		ret := filepath.Join(mdir, base)
    		if err := os.WriteFile(ret, []byte(source), 0644); err != nil {
    			t.Fatal(err)
    		}
    		return ret
    	}
    
    	cDefFile := makeFile(cdir, "cdef.c", cDefSource)
    	cRefFile := makeFile(cdir, "cref.c", cRefSource)
    
    	ccCmd := cCompilerCmd(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistryTest.groovy

            vsConfig1.project == vsConfig2.project
    
            and:
            vsConfig1.type == "Makefile"
            vsConfig1.project.name == "mainExe"
            vsConfig1.configurationName == "vsConfig1"
            vsConfig1.platformName == "Win32"
    
            and:
            vsConfig2.type == "Makefile"
            vsConfig2.project.name == "mainExe"
            vsConfig2.configurationName == "vsConfig2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. build/dependencies.yaml

        #  match: DEFAULT_NPD_VERSION
    
      # From https://github.com/etcd-io/etcd/blob/main/Makefile
      - name: "golang: etcd release version"
        version: 1.21.10 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md
        refPaths:
        - path: cluster/images/etcd/Makefile
          match: 'GOLANG_VERSION := \d+.\d+(alpha|beta|rc)?\.?(\d+)?'
    
      # Golang
      - name: "golang: upstream version"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. releasenotes/notes/48545.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 196 bytes
    - Viewed (0)
  7. cluster/addons/addon-manager/README.md

    #### How to release
    
    The `addon-manager` is built for multiple architectures.
    
    1. Change something in the source
    2. Bump `VERSION` in the `Makefile`
    3. Bump `KUBECTL_VERSION` in the `Makefile` if required
    4. Build the `amd64` image and test it on a cluster
    5. Push all images
    
    ```console
    # Build for linux/amd64 (default)
    $ make push ARCH=amd64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. manifests/helm-profiles/README.md

    While a user can just explicitly pass this with `--values/-f`.
    
    However, Istio also provides a feature to bundle these with the charts, which is convenient when installing from remote charts.
    For details, see `copy-templates` Makefile target, and `manifests/zzz_profile.yaml`.
    
    Any changes to this folder should have a `make copy-templates` applied afterwards.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 708 bytes
    - Viewed (0)
  9. istioctl/docker/Dockerfile.istioctl

    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION}
    USER 1000:1000
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/istioctl /usr/local/bin/istioctl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 305 bytes
    - Viewed (0)
  10. pkg/volume/util/hostutil/hostutil_unsupported.go

    // GetFileType always returns an error on unsupported platforms
    func (hu *HostUtil) GetFileType(pathname string) (FileType, error) {
    	return FileType("fake"), errUnsupported
    }
    
    // MakeFile always returns an error on unsupported platforms
    func (hu *HostUtil) MakeFile(pathname string) error {
    	return errUnsupported
    }
    
    // MakeDir always returns an error on unsupported platforms
    func (hu *HostUtil) MakeDir(pathname string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 10:17:38 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top