Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 132 for test_ir (0.53 sec)

  1. hack/lib/util.sh

    function kube::util::create_signing_certkey {
        local sudo=$1
        local dest_dir=$2
        local id=$3
        local purpose=$4
        # Create client ca
        ${sudo} /usr/bin/env bash -e <<EOF
        rm -f "${dest_dir}/${id}-ca.crt" "${dest_dir}/${id}-ca.key"
        ${OPENSSL_BIN} req -x509 -sha256 -new -nodes -days 365 -newkey rsa:2048 -keyout "${dest_dir}/${id}-ca.key" -out "${dest_dir}/${id}-ca.crt" -subj "/C=xx/ST=x/L=x/O=x/OU=x/CN=ca/emailAddress=x/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            // Don't store userHome in the default location (in the project dir), because this will cause the non-empty project dir detection to fail
            init = TestUtil.create(testDir.testDirectory.file("project"), testDir.testDirectory.file("userHome")).task(InitBuild)
            projectLayoutRegistry = Mock()
            defaultGenerator = Mock()
            buildConverter = Mock()
            init.projectLayoutRegistry = projectLayoutRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

        public String getDestPath() {
            return destDir == null ? null : PATH_NOTATION_PARSER.parseNotation(destDir);
        }
    
        @Override
        @Nullable
        public File getDestinationDir() {
            if (destDir instanceof File) {
                return (File) destDir;
            } else {
                return destDir == null ? null : new File(PATH_NOTATION_PARSER.parseNotation(destDir));
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/ResolveCrossVersionIntegrationTest.groovy

            maven { url "${mavenHttpRepo.uri}" }
        } else {
            mavenRepo urls: "${mavenHttpRepo.uri}"
        }
    }
    
    configurations {
        compile
    }
    
    dependencies {
        compile 'test:io:1.4'
        compile 'test:lang:2.+'
    }
    
    task check {
        doLast {
            assert configurations.compile*.name as Set == ['io-1.4.jar', 'lang-2.6.jar'] as Set
        }
    }
    """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      // UnitTest has a guard to prevent from calling this method more then once.
      virtual void RegisterTests() {
        for (typename TestInfoContainer::iterator test_it = tests_.begin();
             test_it != tests_.end(); ++test_it) {
          linked_ptr<TestInfo> test_info = *test_it;
          for (typename InstantiationContainer::iterator gen_it =
                   instantiations_.begin(); gen_it != instantiations_.end();
                   ++gen_it) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    The plugin also integrates with <<test_kit.adoc#test_kit,TestKit>>, a library that aids in writing and executing functional tests for plugin code.
    It automatically adds the `gradleTestKit()` dependency to the `testImplementation` configuration and generates a plugin classpath manifest file consumed by a `GradleRunner` instance if found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      // UnitTest has a guard to prevent from calling this method more then once.
      virtual void RegisterTests() {
        for (typename TestInfoContainer::iterator test_it = tests_.begin();
             test_it != tests_.end(); ++test_it) {
          linked_ptr<TestInfo> test_info = *test_it;
          for (typename InstantiationContainer::iterator gen_it =
                   instantiations_.begin(); gen_it != instantiations_.end();
                   ++gen_it) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  8. docs/ftp/README.md

    ftp> ls runner/
    229 Entering Extended Passive Mode (|||39155|)
    150 Opening ASCII mode data connection for file list
    drwxrwxrwx 1 nobody nobody            0 Jan  1 00:00 chunkdocs/
    drwxrwxrwx 1 nobody nobody            0 Jan  1 00:00 testdir/
    ...
    ```
    
    Following example shows how to list an object and download it locally via `ftp` client:
    
    ```
    ftp> ls runner/chunkdocs/metadata
    229 Entering Extended Passive Mode (|||44269|)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

            'RegularFileProperty' | []                    | 'null'      | 'fileProperty'      | 'not provided'
            'DirectoryProperty'   | ['--myProp=testDir']  | 'testDir'   | 'directoryProperty' | 'provided'
            'DirectoryProperty'   | []                    | 'null'      | 'directoryProperty' | 'not provided'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/antMigration/multiProject/kotlin/util/build.xml

        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <target name="compile">
            <mkdir dir="${classes.dir}"/>
            <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="true"/>
        </target>
    
        <target name="package" depends="build">
            <jar destfile="${build.dir}/lib/hello-app.jar" basedir="${classes.dir}"/>
        </target>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 603 bytes
    - Viewed (0)
Back to top