Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for isQtext (0.26 sec)

  1. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDo/groovy/build.gradle

    def config = providers.fileContents(layout.projectDirectory.file('some.conf'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 91 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDo/kotlin/build.gradle.kts

    val config = providers.fileContents(layout.projectDirectory.file("some.conf"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 91 bytes
    - Viewed (0)
  3. src/runtime/coverage/coverage.go

    package coverage
    
    import (
    	"internal/coverage/cfile"
    	"io"
    )
    
    // initHook is invoked from main.init in programs built with -cover.
    // The call is emitted by the compiler.
    func initHook(istest bool) {
    	cfile.InitHook(istest)
    }
    
    // WriteMetaDir writes a coverage meta-data file for the currently
    // running program to the directory specified in 'dir'. An error will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/_builtin/coverage.go

    // in cmd/compile/internal/typecheck
    // to update builtin.go. This is not done automatically
    // to avoid depending on having a working compiler binary.
    
    //go:build ignore
    
    package coverage
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 16:59:48 UTC 2024
    - 437 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassDetector.java

            }
            return null;
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
            if (!isAbstract() && !isTest()) {
                return new TestNGTestMethodDetector();
            } else {
                return null;
            }
        }
    
        private class TestNGTestMethodDetector extends MethodVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

     * Returns the trimmed contents of the file at the given [path] after
     * marking the file as a build logic input.
     */
    fun Project.trimmedContentsOfFile(path: String): String =
        providers.fileContents(repoRoot().file(path)).asText.get().trim()
    
    // TODO Simplify the buildTimestamp() calculation if possible
    fun Project.buildTimestamp(): Provider<String> =
        providers.of(BuildTimestampValueSource::class) {
            parameters {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

                        commandLine "cmd.exe", "/d", "/c", "type", "message"
                    }.standardOutput.asText.get()
                    print message
                """
            } else {
                scriptFile << """
                    def message = providers.exec {
                        commandLine "cat", "message"
                    }.standardOutput.asText.get()
                    print message
                """
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/compose.go

    			}
    			return
    		}
    	}
    	b.extensions = append(b.extensions, e)
    }
    
    // SetExt sets the extension e to the tag. e must be a valid extension as
    // returned by Tag.Extension. If the extension already exists, it will be
    // overwritten, except for a -u extension, where the individual key-type pairs
    // will be set.
    func (b *Builder) SetExt(e string) {
    	if e[0] == 'x' {
    		b.private = e
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassDetector.java

                setTest(true);
            }
    
            return null;
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
            if (!isTest()) {
                return new MethodVisitor(AsmConstants.ASM_LEVEL) {
                    @Override
                    public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/TestClassVisitor.java

        }
    
        public String getClassName() {
            return className;
        }
    
        public String getSuperClassName() {
            return superClassName;
        }
    
        public boolean isTest() {
            return test;
        }
    
        protected void setTest(boolean test) {
            this.test = test;
        }
    
        public boolean isAbstract() {
            return isAbstract;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top