Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for isHost (0.79 sec)

  1. src/go/doc/comment/parse.go

    			if i < len(lines) && lines[i] != "" && !isList(lines[i]) {
    				switch {
    				case isList(lines[i-1]):
    					// If the final unindented line looks like a list item,
    					// this may be the first indented line wrap of
    					// a mistakenly unindented list.
    					// Leave all the unindented list items.
    					forceIndent = end
    					end--
    					for end > start && isList(lines[end-1]) {
    						end--
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/AbstractTestFrameworkDetector.java

            TestClass testClass = readClassFile(testClassFile, fallbackClassNameProvider);
    
            boolean isTest = testClass.isTest();
    
            if (!isTest) { // scan parent class
                String superClassName = testClass.getSuperClassName();
    
                if (isKnownTestCaseClassName(superClassName)) {
                    isTest = true;
                } else {
                    File superClassFile = getSuperTestClassFile(superClassName);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

                isOutputEntry(previousIndex.keySet(), beforeExecutionIndex, afterExecutionSnapshot, isRoot)
            );
        }
    
        private static boolean isOutputEntry(Set<String> previousLocations, Map<String, FileSystemLocationSnapshot> beforeExecutionSnapshots, FileSystemLocationSnapshot afterExecutionSnapshot, Boolean isRoot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGenerator.groovy

            file projectDir, "pom.xml", fileContentGenerator.generatePomXML(subProjectNumber, dependencyTree)
            file projectDir, "BUILD.bazel", bazelContentGenerator.generateBuildFile(subProjectNumber, dependencyTree)
            if (isRoot) {
                file projectDir, "WORKSPACE", bazelContentGenerator.generateWorkspace()
                file projectDir, "junit.bzl", bazelContentGenerator.generateJunitHelper()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RootTrackingFileSystemSnapshotHierarchyVisitor.java

         */
        public void enterDirectory(DirectorySnapshot directorySnapshot, boolean isRoot) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
         * @return how to continue visiting the rest of the snapshot hierarchy.
         */
        public abstract SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot, boolean isRoot);
    
        /**
         * Called after all entries in the directory has been visited.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

                .join("\n        ")}
            """
        }
    
        String generateBuildGradle(Language language, Integer subProjectNumber, DependencyTree dependencyTree) {
            def isRoot = subProjectNumber == null
            if (isRoot && config.subProjects > 0) {
                if (config.compositeBuild) {
                    return """
                    ${createTaskThatDependsOnAllIncludedBuildsTaskWithSameName('clean')}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializer.java

                @Override
                public void enterDirectory(DirectorySnapshot directorySnapshot, boolean isRoot) {
                    try {
                        writeEntryType(encoder, EntryType.DIR_OPEN);
                        writePath(encoder, isRoot, directorySnapshot);
                    } catch (IOException e) {
                        throw new UncheckedIOException(e);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:45:55 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

            }
        }
    
        def generateProject(File projectDir, Integer subProjectNumber) {
            def isRoot = subProjectNumber == null
    
            file projectDir, KOTLIN.fileNameFor('settings'), generateSettingsGradle(isRoot)
            file projectDir, "gradle.properties", generateGradleProperties(isRoot)
    
            file projectDir, config.dsl.fileNameFor('build'), generateBuildGradle(subProjectNumber)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/MissingRootAndDuplicateIgnoringFileSystemSnapshotVisitor.java

        @Override
        public final SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot, boolean isRoot) {
            if (!(snapshot.getType() == FileType.Missing && isRoot) && processedEntries.add(snapshot.getAbsolutePath())) {
                visitAcceptedEntry(snapshot, isRoot);
            }
            return SnapshotVisitResult.CONTINUE;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. test/slice3.go

    		"vminus1",
    		"v0",
    		"v1",
    		"v2",
    		"v3",
    		"v10",
    		"v20",
    	}
    
    	parse := func(s string) (n int, isconst bool) {
    		if s == "vminus1" {
    			return -1, false
    		}
    		isconst = true
    		if s[0] == 'v' {
    			isconst = false
    			s = s[1:]
    		}
    		n, _ = strconv.Atoi(s)
    		return n, isconst
    	}
    
    	const Cap = 10 // cap of slice, array
    
    	for _, base := range []string{"array", "slice"} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.9K bytes
    - Viewed (0)
Back to top