Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 658 for incorrectly (0.35 sec)

  1. src/cmd/go/testdata/script/mod_list_direct_work.txt

    # Test that ModuleDirect.Public is correctly set on go list output.
    # This is a regression test for issue #66789.
    
    # In this test, the workspace contains modules example.com/a and
    # example.com/b. Module example.com/a has a direct requirement
    # on rsc.io/sampler, and an indirect requirement on golang.org/x/text
    # through rsc.io/isampler. Module example.com/b has a direct
    # requirement on example.com/c which is incorrectly marked as indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/AbstractTypeAnnotationHandler.java

            visitor.visitTypeProblem(problem ->
                problem.withAnnotationType(classWithAnnotationAttached)
                    .id("invalid-use-of-type-annotation", "Incorrect use of type annotation", GradleCoreProblemGroup.validation().type())
                    .contextualLabel("is incorrectly annotated with @" + annotationType.getSimpleName())
                    .documentedAt(Documentation.userManual("validation_problems", "invalid_use_of_cacheable_annotation"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. releasenotes/notes/fix-concurrency.yaml

        and otherwise set concurrency based on the CPU limit allocated to the container
        For example, a limit of 2500m would set concurrency to 3.
        
        Prior to this release, sidecars followed this logic, but sometimes incorrectly determined the CPU limit.
        Gateways would never automatically adapt based on concurrency settings.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. internal/bucket/replication/datatypes.go

    const (
    	// Pending - replication is pending.
    	Pending StatusType = "PENDING"
    
    	// Completed - replication completed ok.
    	Completed StatusType = "COMPLETED"
    
    	// CompletedLegacy was called "COMPLETE" incorrectly.
    	CompletedLegacy StatusType = "COMPLETE"
    
    	// Failed - replication failed.
    	Failed StatusType = "FAILED"
    
    	// Replica - this is a replica.
    	Replica StatusType = "REPLICA"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/PluginTestPreconditions.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.preconditions
    
    import org.gradle.test.precondition.TestPrecondition
    
    // These imports are required, IntelliJ incorrectly thinks that they are not used because old versions of Groovy
    // permitted subtypes to use the parent type's methods without importing them
    import static org.gradle.test.precondition.TestPrecondition.satisfied;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/go/parser/testdata/resolution/typeparams.go2

    // TODO(rFindley): make a decision on how/whether to resolve identifiers that
    // refer to receiver type parameters, as is the case for the 'P' result
    // parameter below.
    //
    // For now, we ensure that types are not incorrectly resolved when receiver
    // type parameters are in scope.
    func (r /* =@recv */ Receiver /* @Receiver */ [RP]) m(RP) RP {}
    
    func f /* =@f */[T1 /* =@T1 */ interface{~[]T2 /* @T2 */}, T2 /* =@T2 */ any](
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. security/pkg/pki/util/san.go

    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, fmt.Errorf("the SAN extension is incorrectly encoded")
    	}
    
    	// Check the rawValue is a sequence.
    	if !sequence.IsCompound || sequence.Tag != asn1.TagSequence || sequence.Class != asn1.ClassUniversal {
    		return nil, fmt.Errorf("the SAN extension is incorrectly encoded")
    	}
    
    	ids := []Identity{}
    	for bytes := sequence.Bytes; len(bytes) > 0; {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/deadstore_test.go

    			Goto("exit")),
    		Bloc("exit",
    			Exit("store2")))
    
    	CheckFunc(fun.f)
    	cse(fun.f)
    	dse(fun.f)
    	CheckFunc(fun.f)
    
    	v := fun.values["store1"]
    	if v.Op == OpCopy {
    		t.Errorf("store %s incorrectly removed", v)
    	}
    }
    
    func TestDeadStoreUnsafe(t *testing.T) {
    	// Make sure a narrow store can't shadow a wider one. The test above
    	// covers the case of two different types, but unsafe pointer casting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pkg/config/kube/conversion_test.go

    		},
    		{
    			name:          "resolves grpc-web",
    			portName:      "grpc-web-x",
    			expectedProto: protocol.GRPCWeb,
    		},
    		{
    			name:          "makes sure grpc-web is not resolved incorrectly",
    			portName:      "grpcweb-x",
    			expectedProto: protocol.Unsupported,
    		},
    		{
    			name:          "resolves based on known ports",
    			port:          3306, // mysql
    			portName:      "random-name",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 28 15:30:30 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_goroot_errors.txt

    # Regression test for https://golang.org/issue/34769.
    # Missing standard-library imports should refer to GOROOT rather than
    # complaining about a malformed module path.
    # This is especially important when GOROOT is set incorrectly,
    # since such an error will occur for every package in std.
    
    # Building a nonexistent std package directly should fail usefully.
    
    ! go build -mod=readonly nonexist
    ! stderr 'import lookup disabled'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top