Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for rejections (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            then: "custom metadata rule prevented parsing of ivy descriptor"
            checkResolve "group:projectA:1.+": ["group:projectA:1.2", "didn't match version 2.0"], "group:projectB:latest.release": ["group:projectB:1.1", "rejection: version 2.2:   - Attribute 'custom string' didn't match. Requested 'v2', was: 'v1'"]
            outputContains 'Providing metadata for group:projectB:2.2'
            outputContains 'Providing metadata for group:projectB:1.1'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. src/internal/filepathlite/path_windows.go

    	}
    	if IsPathSeparator(path[0]) {
    		// Path rooted in the current drive.
    		return false
    	}
    	if stringslite.IndexByte(path, ':') >= 0 {
    		// Colons are only valid when marking a drive letter ("C:foo").
    		// Rejecting any path with a colon is conservative but safe.
    		return false
    	}
    	hasDots := false // contains . or .. path elements
    	for p := path; p != ""; {
    		var part string
    		part, p, _ = cutPath(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. samples/extauthz/cmd/extauthz/main.go

    	<-sigs
    }
    
    func returnIfNotTooLong(body string) string {
    	// Maximum size of a header accepted by Envoy is 60KiB, so when the request body is bigger than 60KB,
    	// we don't return it in a response header to avoid rejecting it by Envoy and returning 431 to the client
    	if len(body) > 60000 {
    		return "<too-long>"
    	}
    	return body
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/leaderelection.go

    	l.runFns = append(l.runFns, f)
    	return l
    }
    
    // NewLeaderElection creates a leader election instance with the provided ID. This follows standard Kubernetes
    // elections, with one difference: the "default" revision will steal the lock from other revisions.
    func NewLeaderElection(namespace, name, electionID, revision string, client kube.Client) *LeaderElection {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    		})
    
    		group(t, "unsigned bignum", []test{
    			{
    				name:  "rejected",
    				in:    hex("c249010000000000000000"), // 2(18446744073709551616)
    				fixme: "decoding cbor data tagged with 2 produces big.Int instead of rejecting",
    				assertOnError: func(t *testing.T, e error) {
    					// TODO: Once this can pass, make the assertion stronger.
    					if e == nil {
    						t.Error("expected non-nil error")
    					}
    				},
    			},
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (status.ok()) {
        if (!compile) {
          VLOG(2) << "Rejecting " << node->name() << ": kXlaCompileAttr("
                  << kXlaCompileAttr << ") is false.";
        }
        return !compile;
      }
    
      status = flib_def_->GetAttr(*node, kXlaCompileAttr, &compile);
      if (status.ok()) {
        if (!compile) {
          VLOG(2) << "Rejecting " << node->name() << ": kXlaCompileAttr("
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            then:
            _ * componentSelectionRules.rules >> rules({ ComponentSelection selection ->
                selection.reject("Rejecting everything")
            })
            1 * selectedComponentResult.getContentFilter() >> null
            1 * selectedComponentResult.rejectedByRule({it.id == c.id})
            1 * selectedComponentResult.rejectedByRule({it.id == b.id})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    	// Plugins **have to** implement a QueueingHint for Pod/Update event
    	// if the rejection from them could be resolved by updating unscheduled Pods themselves.
    	// Example: Pods that require excessive resources may be rejected by the noderesources plugin,
    	// if this unscheduled pod is updated to require fewer resources,
    	// the previous rejection from noderesources plugin can be resolved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar.go

    func (s *Scalar) SetBytesWithClamping(x []byte) (*Scalar, error) {
    	// The description above omits the purpose of the high bits of the clamping
    	// for brevity, but those are also lost to reductions, and are also
    	// irrelevant to edwards25519 as they protect against a specific
    	// implementation bug that was once observed in a generic Montgomery ladder.
    	if len(x) != 32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/syscall/syscall_plan9.go

    	if newoffset == -1 {
    		err = NewError(e)
    	}
    	return
    }
    
    func Mkdir(path string, mode uint32) (err error) {
    	// If path exists and is not a directory, Create will fail silently.
    	// Work around this by rejecting Mkdir if path exists.
    	statbuf := make([]byte, bitSize16)
    	// Remove any trailing slashes from path, otherwise the Stat will
    	// fail with ENOTDIR.
    	n := len(path)
    	for n > 1 && path[n-1] == '/' {
    		n--
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top