Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 469 for nothings (0.16 sec)

  1. platforms/documentation/docs/src/docs/release/notes.md

    Example:
    > The [configuration cache](userguide/configuration_cache.html) improves build performance by caching the result of
    > the configuration phase. Using the configuration cache, Gradle can skip the configuration phase entirely when
    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    > HIGHLIGHT the use case or existing problem the feature solves
    > EXPLAIN how the new release addresses that problem or use case
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/firSymbolUtils.kt

    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.utils.exceptions.errorWithAttachment
    
    
    internal fun FirCallableSymbol<*>.invalidModalityError(): Nothing {
        errorWithAttachment("Symbol modality should not be null, looks like the FIR symbol was not properly resolved") {
            withFirEntry("fir", ******@****.***)
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. build-logic-commons/basics/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    description = "Provides plugins for configuring miscellaneous things (repositories, reproducibility, minify)"
    
    group = "gradlebuild"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    dependencies {
        api("gradlebuild:build-environment")
        api(platform(project(":build-platform")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 1022 bytes
    - Viewed (0)
  4. src/go/types/instantiate.go

    		if !check.validateTArgLen(pos, orig.String(), tparams.Len(), len(targs)) {
    			return Typ[Invalid]
    		}
    		if tparams.Len() == 0 {
    			return orig // nothing to do (minor optimization)
    		}
    
    		return check.newAliasInstance(pos, orig, targs, ctxt)
    
    	case *Signature:
    		assert(expanding == nil) // function instances cannot be reached from Named types
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/build/relnote/links.go

    	// The open bracket must be preceeded by a link-adjacent rune (or by nothing).
    	if t := plainText(i - 1); t != "" {
    		r, _ := utf8.DecodeLastRuneInString(t)
    		if !isLinkAdjacentRune(r) {
    			return ""
    		}
    	}
    	// The element after the next must be a ']'.
    	if plainText(i+2) != "]" {
    		return ""
    	}
    	// The ']' must be followed by a link-adjacent rune (or by nothing).
    	if t := plainText(i + 3); t != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. cmd/erasure-encode.go

    				io.EOF,
    				io.ErrUnexpectedEOF,
    			}...) {
    				return 0, err
    			}
    		}
    
    		eof := err == io.EOF || err == io.ErrUnexpectedEOF
    		if n == 0 && total != 0 {
    			// Reached EOF, nothing more to be done.
    			break
    		}
    
    		// We take care of the situation where if n == 0 and total == 0 by creating empty data and parity files.
    		blocks, err = e.EncodeData(ctx, buf[:n])
    		if err != nil {
    			return 0, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

         */
        fun loadRequestedTasks(graph: BuildTreeWorkGraph, graphBuilder: BuildTreeWorkGraphBuilder?): BuildTreeWorkGraph.FinalizedGraph
    
        /**
         * Prepares to load or create a model. Does nothing if the cached model is available or else prepares to capture
         * configuration fingerprints and validation problems and then runs the given function.
         */
        fun maybePrepareModel(action: () -> Unit)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/ObjectInputStreamAdapter.kt

        private
        val inputStream: InputStream
            get() = readContext.inputStream
    }
    
    
    internal
    fun unsupported(feature: String): Nothing =
        throw UnsupportedOperationException("'$feature' is not supported by the Gradle configuration cache. See $javaSerializationDocumentationLink for details.")
    
    
    private
    val javaSerializationDocumentationLink: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

                        def nonLauncherOrCoreClass = "org.gradle.api.reporting.Report"
    
                        // Check that this is a dependency (to verify that the class is not accidentally removed and so make the test verify nothing)
                        assert Class.forName(nonLauncherOrCoreClass) != null
    
                        try {
                            def clazz = systemLoader.loadClass(nonLauncherOrCoreClass)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/path/filepath/match.go

    		}
    	}
    	return
    }
    
    // cleanGlobPath prepares path for glob matching.
    func cleanGlobPath(path string) string {
    	switch path {
    	case "":
    		return "."
    	case string(Separator):
    		// do nothing to the path
    		return path
    	default:
    		return path[0 : len(path)-1] // chop off trailing separator
    	}
    }
    
    // cleanGlobPathWindows is windows version of cleanGlobPath.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top