Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,993 for Rejected (0.1 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

            resolve.expectGraph {
                root(":", ":test:") {
                    String rejectedVersions = (selected + 1..5).collect { "1.${it}" }.reverse().join(", ")
                    edge("org:foo:{require $notation; reject ${rejects.join(' & ')}}", "org:foo:1.$selected") {
                        notRequested()
                        byReason("rejected versions ${rejectedVersions}")
                    }
                }
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/util/stats.go

    	ServerState    uint64
    	WorkersStarted uint64
    }
    
    // String representation of the Stats.
    func (s *Stats) String() string {
    	return fmt.Sprintf("cds updates: %d successful, %d rejected; lds updates: %d successful, %d rejected",
    		s.CDSUpdatesSuccess,
    		s.CDSUpdatesRejection,
    		s.LDSUpdatesSuccess,
    		s.LDSUpdatesRejection)
    }
    
    // GetReadinessStats returns the current Envoy state by checking the "server.state" stat.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 21 15:50:49 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. docs_src/schema_extra_example/tutorial005_py310.py

                    "value": {
                        "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.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionCause.java

        /**
         * This component was selected because it's the root component.
         */
        ROOT("root"),
    
        /**
         * This component was selected because it was requested directly.
         */
        REQUESTED("requested"),
    
        /**
         * This component was selected by a rule.
         */
        SELECTED_BY_RULE("selected by rule"),
    
        /**
         * This component was selected because selection was forced on this version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/RejectRemainingCandidates.java

                Collection<? extends CapabilitiesConflictHandler.CandidateDetails> candidates = details.getCandidates(capabilityVersion);
                if (!candidates.isEmpty()) {
                    // Arbitrarily select and mark all as rejected
                    for (CapabilitiesConflictHandler.CandidateDetails candidate : candidates) {
                        candidate.reject();
                    }
                }
            }
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. test/fixedbugs/issue19482.go

    // errorcheck
    
    // Copyright 2017 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.
    
    // Compiler rejected initialization of structs to composite literals
    // in a non-static setting (e.g. in a function)
    // when the struct contained a field named _.
    
    package p
    
    type T struct {
    	_ string
    }
    
    func ok() {
    	var x = T{"check"}
    	_ = x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:59:09 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

        | org.gradle.usage           | java-runtime |           |
       Selection reasons:
          - Forced
          - Selected by rule
          - Selected by rule: RULE 2
          - Selected by rule: SUBSTITUTION 1
          - Selected by rule: SUBSTITUTION 2
          - Selected by rule: SUBSTITUTION 3
    
    org:foo:1.0 -> org:bar:2.0
    \\--- conf
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. pkg/kubelet/sysctl/allowlist_test.go

    			t.Errorf("expected to be rejected: %+v", test)
    		}
    		pod.Spec.HostNetwork = test.hostNet
    		pod.Spec.HostIPC = test.hostIPC
    		pod.Spec.SecurityContext.Sysctls = []v1.Sysctl{{Name: test.sysctl, Value: test.sysctl}}
    		status := w.Admit(attrs)
    		if status.Admit {
    			t.Errorf("expected to be rejected: %+v", test)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. docs_src/schema_extra_example/tutorial005.py

                    "value": {
                        "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.4K bytes
    - Viewed (0)
  10. src/crypto/ed25519/ed25519_test.go

    	var zero zeroReader
    	public, private, _ := GenerateKey(zero)
    
    	message := []byte("test message")
    	sig := Sign(private, message)
    	if !Verify(public, message, sig) {
    		t.Errorf("valid signature rejected")
    	}
    
    	wrongMessage := []byte("wrong message")
    	if Verify(public, wrongMessage, sig) {
    		t.Errorf("signature of different message accepted")
    	}
    }
    
    func TestSignVerifyHashed(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top