Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 860 for incorrectly (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    - transitive dependencies are dependencies that your component needs, but only because another dependency needs them.
    
    It's quite common that issues with dependency management are about _transitive dependencies_.
    Often developers incorrectly fix transitive dependency issues by adding _direct dependencies_.
    To avoid this, Gradle provides the concept of _dependency constraints_.
    
    [[sec:adding-constraints-transitive-deps]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. internal/config/etcd/etcd.go

    	if err != nil {
    		return cfg, err
    	}
    
    	cfg.Enabled = true
    	cfg.DialTimeout = defaultDialTimeout
    	cfg.DialKeepAliveTime = defaultDialKeepAlive
    	// Disable etcd client SDK logging, etcd client
    	// incorrectly starts logging in unexpected data
    	// format.
    	cfg.LogConfig = &zap.Config{
    		Level:    zap.NewAtomicLevelAt(zap.FatalLevel),
    		Encoding: "console",
    	}
    	cfg.Endpoints = etcdEndpoints
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

         */
        boolean isToolingApiStdinInEmbeddedModeSupported();
    
        /**
         * Returns true if the tooling API of this distribution incorrectly locks build action implementation classes.
         */
        boolean isToolingApiLocksBuildActionClasses();
    
        /**
         * Returns the version of the artifact cache layout
         */
        CacheVersion getArtifactCacheLayoutVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            expect:
            compare(larger, smaller) > 0
            compare(smaller, larger) < 0
    
            where:
            larger  | smaller
            "1.0.0" | "1.0"
            "1.0.0" | "1"
        }
    
        def "incorrectly compares Maven snapshot-like versions (current behaviour not necessarily desired behaviour"() {
            expect:
            compare(smaller, larger) < 0
            compare(larger, smaller) > 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. src/go/ast/resolve.go

    		if importErrors {
    			// don't use the universe scope without correct imports
    			// (objects in the universe may be shadowed by imports;
    			// with missing imports, identifiers might get resolved
    			// incorrectly to universe objects)
    			pkgScope.Outer = nil
    		}
    		i := 0
    		for _, ident := range file.Unresolved {
    			if !resolve(fileScope, ident) {
    				p.errorf(ident.Pos(), "undeclared name: %s", ident.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. docs/hotfixes.md

        on his policy is granted more privileges than restricted
        by the users IAM policy.
    
        This is due to an issue of prefix based Matcher() function
        which was incorrectly matching prefix based on resource
        prefixes instead of exact match.
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/cmd/fix/main.go

    	doDiff    = flag.Bool("diff", false, "display diffs instead of rewriting files")
    	goVersion = flag.String("go", "", "go language version for files")
    )
    
    // enable for debugging fix failures
    const debug = false // display incorrectly reformatted source and exit
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go tool fix [-diff] [-r fixname,...] [-force fixname,...] [path ...]\n")
    	flag.PrintDefaults()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/internal/chacha8rand/chacha8.go

    	s.c = 0
    	s.i = 0
    	s.n = chunk
    }
    
    // Refill refills the state with more random values.
    // After a call to Refill, an immediate call to Next will succeed
    // (unless multiple goroutines are incorrectly sharing a state).
    func (s *State) Refill() {
    	s.c += ctrInc
    	if s.c == ctrMax {
    		// Reseed with generated uint64s for forward secrecy.
    		// Normally this is done immediately after computing a block,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    		if line != "" {
    			// Found non-comment non-blank line.
    			// Ends space for valid //go:build comments,
    			// but also ends the fraction of the file we can
    			// reliably parse. From this point on we might
    			// incorrectly flag "comments" inside multiline
    			// string constants or anything else (this might
    			// not even be a Go program). So stop.
    			break
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/runtime/mfinal_test.go

    		{func(x *int) any { return (*Tint)(x) }, func(v Tinter) { finalize((*int)(v.(*Tint))) }},
    		// Test case for argument spill slot.
    		// If the spill slot was not counted for the frame size, it will (incorrectly) choose
    		// call32 as the result has (exactly) 32 bytes. When the argument actually spills,
    		// it clobbers the caller's frame (likely the return PC).
    		{func(x *int) any { return x }, func(v any) [4]int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top