Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 277 for ones (0.33 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectReportIntegTest.groovy

            "dependencyReport"      | []
            "taskReport"            | []
            "propertyReport"        | []
            "htmlDependencyReport"  | []
            // projectReport depends on the other ones, and task order may not be preserved,
            // causing equality comparison between first and second outputs to fail
            //"projectReport"         | []
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

            val paramTypes: Array<Type> = getArgumentTypes(signature)
    
            // Treat all parameters equally, regardless of whether they are implicit captured parameters or the lambda signature ones.
            // If any of them is of an unsupported type, a build that runs from the serialized state won't be able to provide an instance anyway.
            paramTypes.forEach { paramType ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/inl_test.go

    			"stackmapdata",
    			"stringStructOf",
    			"subtract1",
    			"subtractb",
    			"tophash",
    			"(*bmap).keys",
    			"(*bmap).overflow",
    			"(*waitq).enqueue",
    			"funcInfo.entry",
    
    			// GC-related ones
    			"cgoInRange",
    			"gclinkptr.ptr",
    			"guintptr.ptr",
    			"heapBitsSlice",
    			"markBits.isMarked",
    			"muintptr.ptr",
    			"puintptr.ptr",
    			"spanOf",
    			"spanOfUnchecked",
    			"typePointers.nextFast",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/version.go

    	ExplicitIndirectVersion = "1.17"
    
    	// separateIndirectVersion is the Go version at which
    	// "// indirect" dependencies are added in a block separate from the direct
    	// ones. See https://golang.org/issue/45965.
    	SeparateIndirectVersion = "1.17"
    
    	// tidyGoModSumVersion is the Go version at which
    	// 'go mod tidy' preserves go.mod checksums needed to build test dependencies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/nowb.go

    	// it's a lot harder to work out the argument after.
    	for _, n := range typecheck.Target.Funcs {
    		c.curfn = n
    		if c.curfn.ABIWrapper() {
    			// We only want "real" calls to these
    			// functions, not the generated ones within
    			// their own ABI wrappers.
    			continue
    		}
    		ir.Visit(n, c.findExtraCalls)
    	}
    	c.curfn = nil
    	return c
    }
    
    func (c *nowritebarrierrecChecker) findExtraCalls(nn ir.Node) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

            // Those two public constants are initialized here, as they need all the private constants
            // above to be initialized first, but the code style imposes the public constants to be
            // defined above the private ones...
            OS_FAMILY = getOsFamily();
            IS_WINDOWS = isFamily(FAMILY_WINDOWS);
        }
    
        private Os() {}
    
        /**
         * Determines if the OS on which Maven is executing matches the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                    .filter { update ->
                        // Only loaded properties can be overridden.
                        // Mutated properties are taking precedence over overridden because the
                        // first ones defined in build logic, hence we want to restore it.
                        update !is SystemPropertyLoad || !overriddenSystemProperties.contains(update.key)
                    }
                    .forEach { update ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

            // Those two public constants are initialized here, as they need all the private constants
            // above to be initialized first, but the code style imposes the public constants to be
            // defined above the private ones...
            OS_FAMILY = getOsFamily();
            IS_WINDOWS = isFamily(FAMILY_WINDOWS);
        }
    
        private Os() {}
    
        /**
         * Determines if the OS on which Maven is executing matches the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/tidy.go

    It adds any missing modules necessary to build the current module's
    packages and dependencies, and it removes unused modules that
    don't provide any relevant packages. It also adds any missing entries
    to go.sum and removes any unnecessary ones.
    
    The -v flag causes tidy to print information about removed modules
    to standard error.
    
    The -e flag causes tidy to attempt to proceed despite errors
    encountered while loading packages.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

     * <p>
     * The class loaders constructed from this classpath can replace classes from the original classpath entries with transformed ones (from "double") when loading.
     */
    public class TransformedClassPath implements ClassPath {
    
        @NonNullApi
        public enum FileMarker {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top