Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 146 for copyfile (1.04 sec)

  1. platforms/jvm/language-groovy/src/integTest/resources/org/gradle/groovy/compile/InvokeDynamicGroovyCompilerSpec/canEnableAndDisableInvokeDynamicOptimization/build.gradle

        def noOptDestDir = compileWithoutOptimization.destinationDirectory
        doLast {
            def optFile = optDestDir.file("MethodInvocations.class").get().asFile
            def noOptFile = noOptDestDir.file("MethodInvocations.class").get().asFile
            assert optFile.size() != noOptFile.size()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/performance/resolveAtBuildTime/groovy/build.gradle

    plugins {
        id('java')
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation 'org.apache.commons:commons-lang3:3.11'
    }
    
    // tag::copy[]
    tasks.register('copyFiles', Copy) {
        into(layout.buildDirectory.dir('output'))
        // Store the configuration into a variable because referencing the project from the task action
        // is not compatible with the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 598 bytes
    - Viewed (0)
  3. cluster/addons/dns/coredns/coredns.yaml.in

              readOnlyRootFilesystem: true
          dnsPolicy: Default
          volumes:
            - name: config-volume
              configMap:
                name: coredns
                items:
                - key: Corefile
                  path: Corefile
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: kube-dns
      namespace: kube-system
      annotations:
        prometheus.io/port: "9153"
        prometheus.io/scrape: "true"
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

            }
        }
    }
    
    task copyFiles(type: Copy) {
        from configurations.lockedConf
        into 'build/copied'
    }
    """
            when:
            succeeds 'copyFiles', '--write-locks'
    
            then:
            lockfileFixture.verifyLockfile('lockedConf', ['org:foo:1.0'])
    
            and:
            succeeds 'copyFiles'
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. cluster/addons/dns/coredns/coredns.yaml.base

              readOnlyRootFilesystem: true
          dnsPolicy: Default
          volumes:
            - name: config-volume
              configMap:
                name: coredns
                items:
                - key: Corefile
                  path: Corefile
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: kube-dns
      namespace: kube-system
      annotations:
        prometheus.io/port: "9153"
        prometheus.io/scrape: "true"
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. build/build-image/rsyncd.sh

    # anything on the local subnet.
    ALLOW=$(ip route | awk  '/^default via/ { reg = "^[0-9./]+ dev "$5 } ; $0 ~ reg { print $1 }')
    
    CONFDIR="/tmp/rsync.k8s"
    PIDFILE="${CONFDIR}/rsyncd.pid"
    CONFFILE="${CONFDIR}/rsyncd.conf"
    SECRETS="${CONFDIR}/rsyncd.secrets"
    
    mkdir -p "${CONFDIR}"
    
    if [[ -f "${PIDFILE}" ]]; then
      PID=$(cat "${PIDFILE}")
      echo "Cleaning up old PID file: ${PIDFILE}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. cluster/addons/dns/nodelocaldns/nodelocaldns.yaml

            configMap:
              name: kube-dns
              optional: true
          - name: config-volume
            configMap:
              name: node-local-dns
              items:
                - key: Corefile
                  path: Corefile.base
    ---
    # A headless service is a service with a service IP but instead of load-balancing it will return the IPs of our associated Pods.
    # We use this to expose metrics to Prometheus.
    apiVersion: v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb_unix_test.go

    	}
    
    	coreFile := "core"
    	if coreUsesPID {
    		coreFile += fmt.Sprintf(".%d", pid)
    	}
    
    	// Execute gdb commands.
    	args := []string{"-nx", "-batch",
    		"-iex", "add-auto-load-safe-path " + filepath.Join(testenv.GOROOT(t), "src", "runtime"),
    		"-ex", "backtrace",
    		filepath.Join(dir, "a.exe"),
    		filepath.Join(dir, coreFile),
    	}
    	cmd = testenv.Command(t, "gdb", args...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/performance/resolveAtBuildTime/kotlin/build.gradle.kts

    plugins {
        id("java-library")
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation("org.apache.commons:commons-lang3:3.11")
    }
    
    // tag::copy[]
    tasks.register<Copy>("copyFiles") {
        into(layout.buildDirectory.dir("output"))
        // Store the configuration into a variable because referencing the project from the task action
        // is not compatible with the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 630 bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

            depInfo = depGenerator.createDependencies()
        }
    
        def generatePerformanceScenarios() {
            String headerFile
            String cppFile
    
            int chosenSourceFileNumber = sourceFiles / 2
            if (projectCount == 1) {
                cppFile = "src/main/cpp/lib${chosenSourceFileNumber}.cpp"
                headerFile = "src/main/headers/lib${chosenSourceFileNumber}.h"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
Back to top