Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,993 for Rejected (0.16 sec)

  1. test/fixedbugs/bug216.go

    // compile
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to be rejected
    // https://golang.org/issue/188
    
    package main
    
    func complexSqrt(i int) (int, int)	{ return 0, 1 }
    
    var re, im = complexSqrt(-1)
    
    func main() {
    	if re != 0 || im != 1 {
    		println("BUG: bug216: want 0,-1 have ", re, im)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 418 bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubTest.groovy

        }
    
        def "rejected message listener is not notified when no queued outgoing messages when stop requested"() {
            RejectedMessageListener listener = Mock()
    
            given:
            hub.addHandler("channel", listener)
    
            when:
            hub.stop()
    
            then:
            0 * _._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  3. src/crypto/elliptic/nistec_p256.go

    		// This should never happen.
    		k = new(big.Int).Mod(k, c.params.N)
    	}
    	scalar := k.FillBytes(make([]byte, 32))
    	inverse, err := nistec.P256OrdInverse(scalar)
    	if err != nil {
    		panic("crypto/elliptic: nistec rejected normalized scalar")
    	}
    	return new(big.Int).SetBytes(inverse)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 696 bytes
    - Viewed (0)
  4. docs_src/schema_extra_example/tutorial005_an_py39.py

                            "name": "Bar",
                            "price": "35.4",
                        },
                    },
                    "invalid": {
                        "summary": "Invalid data is rejected with an error",
                        "value": {
                            "name": "Baz",
                            "price": "thirty five point four",
                        },
                    },
                },
            ),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 26 18:03:13 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. docs_src/schema_extra_example/tutorial005_an.py

                            "name": "Bar",
                            "price": "35.4",
                        },
                    },
                    "invalid": {
                        "summary": "Invalid data is rejected with an error",
                        "value": {
                            "name": "Baz",
                            "price": "thirty five point four",
                        },
                    },
                },
            ),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 26 18:03:13 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java-feature-variant/incompatible-variants/tests/runtimeClasspath.out

    > Task :consumer:dependencyInsight
    project :producer FAILED
       Failures:
          - Could not resolve project :producer.
              - Module 'org.gradle.demo:producer' has been rejected:
                   Cannot select module with conflict on capability 'org.gradle.demo:producer-db-support:1.0' also provided by [org.gradle.demo:producer:1.0(postgresSupportRuntimeElements), org.gradle.demo:producer:1.0(mysqlSupportRuntimeElements)]
    
    project :producer FAILED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 712 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    //     hanging for the long time,
    //   - "short" requests are correctly accounted, i.e. there can be only size of channel passed to the
    //     constructor in flight at any given moment,
    //   - subsequent "short" requests are rejected instantly with appropriate error,
    //   - subsequent "long" requests are handled normally,
    //   - we correctly recover after some "short" requests finish, i.e. we can process new ones.
    func TestMaxInFlightNonMutating(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  8. test/import5.go

    // errorcheck
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that invalid imports are rejected by the compiler.
    // Does not compile.
    
    package main
    
    // Correct import paths.
    import _ "fmt"
    import _ `time`
    import _ "m\x61th"
    import _ "go/parser"
    
    // Correct import paths, but the packages don't exist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 20:07:15 UTC 2017
    - 722 bytes
    - Viewed (0)
  9. docs_src/schema_extra_example/tutorial005_an_py310.py

                            "name": "Bar",
                            "price": "35.4",
                        },
                    },
                    "invalid": {
                        "summary": "Invalid data is rejected with an error",
                        "value": {
                            "name": "Baz",
                            "price": "thirty five point four",
                        },
                    },
                },
            ),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 26 18:03:13 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/crypto/ecdh/ecdh.go

    	//
    	// For NIST curves, this decodes an uncompressed point according to SEC 1,
    	// Version 2.0, Section 2.3.4. Compressed encodings and the point at
    	// infinity are rejected.
    	//
    	// For X25519, this only checks the u-coordinate length. Adversarially
    	// selected public keys can cause ECDH to return an error.
    	NewPublicKey(key []byte) (*PublicKey, error)
    
    	// ecdh performs an ECDH exchange and returns the shared secret. It's exposed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top