Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for Tap (0.03 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/keystore/TestKeyStore.groovy

            }
        }
    
        void configureIncorrectServerCert(GradleExecuter executer) {
            // intentionally use wrong trust store
            def args = getTrustStoreSettings()
                .tap { it["javax.net.ssl.trustStore"] = keyStore.path }
                .collect { "-D${it.key}=${it.value}".toString() }
            if (GradleContextualExecuter.embedded) {
                args.each {
                    executer.withArgument(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

                man.write(jarOut)
    
                hasConfiguredManifest = true
                this
            }
    
            private static JarEntry newEntryWithFixedTime(String path) {
                return new JarEntry(path).tap {
                    // setTimeLocal() is better but it is Java 9+.
                    setTime(CONSTANT_TIME_FOR_ZIP_ENTRIES)
                }
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. istioctl/pkg/proxystatus/proxystatus.go

    	statusCmd.PersistentFlags().StringVarP(&configDumpFile, "file", "f", "",
    		"Envoy config dump JSON file")
    	statusCmd.PersistentFlags().BoolVar(&multiXdsOpts.XdsViaAgents, "xds-via-agents", false,
    		"Access Istiod via the tap service of each agent")
    	statusCmd.PersistentFlags().IntVar(&multiXdsOpts.XdsViaAgentsLimit, "xds-via-agents-limit", 100,
    		"Maximum number of pods being visited by istioctl when `xds-via-agent` flag is true."+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

        }
    
        def <T> T loadToolingLeanModel(Class<T> modelClass, @DelegatesTo(ModelBuilder<T>) Closure configurator = {}) {
            withConnection {
                def builder = it.model(modelClass)
                builder.tap(configurator)
                collectOutputs(builder)
                builder.get()
            }
        }
    
        def <T> T loadValidatedToolingModel(Class<T> modelClass, @DelegatesTo(ModelBuilder<T>) Closure configurator = {}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy

            run('checkDeadInternalLinks').build()
    
            then:
            assertNoDeadLinks()
        }
    
        private File createJavadocForClass(String path) {
            new File(docsRoot, "javadoc/${path}.html").tap {
                parentFile.mkdirs()
                createNewFile()
                text = "Generated javadoc HTML goes here"
            }
        }
    
        private GradleRunner run(String... args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 28 22:01:54 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingResourceHasherTest.groovy

            when:
            hasher.hash(zipContext)
    
            then:
            1 * delegate.hash(zipContext)
        }
    
        def "throws IOException generated from hasher"() {
            def file = file('doesNotExist').tap { it.text = "" }
            def delegate = Mock(ResourceHasher)
            def hasher = LineEndingNormalizingResourceHasher.wrap(delegate, LineEndingSensitivity.NORMALIZE_LINE_ENDINGS)
            def snapshotContext = snapshotContext(file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

                it.name.startsWith("gradle-kotlin-dsl-${targetVersion.baseVersion.version}")
            }).content("gradle-kotlin-dsl-versions.properties")
            return new Properties().tap { load(new StringReader(props)) }.getProperty("kotlin")
        }
    
        protected List<File> canonicalClassPath() {
            return canonicalClassPathFor(projectDir)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy

        def injectAnnotation = Stub(JApiAnnotation)
    
        def setup() {
            new File(tmp, "org/gradle/api").mkdirs()
            sourceFile = new File(tmp, "${TEST_INTERFACE_NAME.replace('.', '/')}.java").tap { text = "" }
    
            jApiClassifier.fullyQualifiedName >> TEST_INTERFACE_NAME
            jApiField.name >> 'field'
            jApiField.jApiClass >> jApiClassifier
            jApiMethod.name >> 'method'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 16K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

                    resArtifacts.set(
                        resolvedArtifacts.map { arts ->
                            arts.collect { art ->
                                objects.newInstance(ResolvedArtifactBean).tap { bean ->
                                    bean.file = art.file
                                    bean.id = art.id
                                    bean.type = art.type
                                    bean.variant = art.variant
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

        private String enumMapToString() {
            "new EnumMap([(SomeEnum.One): 'one', (SomeEnum.Two): 'two'])"
        }
    
        private String treeMapWithComparator() {
            "new TreeMap({ x, y -> y.compareTo(x) }).tap { putAll([a: 1, b: 2]) }"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top