Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,993 for Rejected (0.19 sec)

  1. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesComponentSelectionRulesIntegrationTest.groovy

            executer.inDirectory(sample.dir.file(dsl))
    
            when:
            run "resolveConfiguration"
    
            then:
            output.contains "Rejected version: 1.5"
            output.contains "Rejected version: 1.4"
            output.contains "** Accepted version: 1.3.0"
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

                if (selection.candidate.version != '1.3') {
                    selection.reject("rejected")
                }
            })
            1 * selectedComponentResult.getContentFilter() >> null
            1 * selectedComponentResult.notMatched(c.id, _)
            1 * selectedComponentResult.rejectedByRule({it.id == d.id}) // 1.2 won't be rejected because of latest first sorting
            1 * selectedComponentResult.matches(b.id)
            0 * _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

                return false;
            }
    
            // If the previous result was rejected, do not need to re-resolve (new rejects will be a superset of previous rejects)
            if (previousResult.isRejected()) {
                return false;
            }
    
            // If the previous result is still not rejected, do not need to re-resolve. The previous result is still good.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/interface.go

    	// plugins are used to prevent or delay the binding of a Pod. A permit plugin
    	// must return success or wait with timeout duration, or the pod will be rejected.
    	// The pod will also be rejected if the wait timeout or the pod is rejected while
    	// waiting. Note that if the plugin returns "wait", the framework will wait only
    	// after running the remaining plugins given that no other plugin rejects the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/printers/sourcechecker_test.go

    		"bar/foo/baz",
    	}
    
    	testCases := []struct {
    		name            string
    		pkgPath         string
    		shouldBeAllowed bool
    	}{
    		{
    			name:            "package path beginning with forbidden prefix is rejected",
    			pkgPath:         "foo/bar/baz/buz",
    			shouldBeAllowed: false,
    		},
    		{
    			name:            "package path not fully matching forbidden prefix is allowed",
    			pkgPath:         "bar/foo",
    			shouldBeAllowed: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    			default:
    				rejected = true
    				admissionmetrics.Metrics.ObserveWebhookRejection(ctx, hook.Name, "admit", string(versionedAttr.Attributes.GetOperation()), admissionmetrics.WebhookRejectionAPIServerInternalError, 0)
    				admissionmetrics.Metrics.ObserveWebhook(ctx, hook.Name, time.Since(t), rejected, versionedAttr.Attributes, "admit", 0)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. releasenotes/notes/45719.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 45719
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 29 16:47:04 UTC 2023
    - 244 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    				}
    			},
    			fixme: "NaN and positive/negative infinities should be rejected",
    		},
    		{
    			name: "single precision infinity",
    			in:   hex("fa7f800000"),
    			assertOnError: func(t *testing.T, e error) {
    				if e == nil {
    					t.Fatal("expected non-nil error")
    				}
    			},
    			fixme: "NaN and positive/negative infinities should be rejected",
    		},
    		{
    			name: "double precision infinity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolverTest.groovy

            when:
            def selected = resolverWithMock.selectBest(moduleId, moduleSelectors([nine, otherNine]))
    
            then:
            selected.componentId == projectId
            selected.version == TestProjectSelectorState.VERSION
            0 * mockResolver._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. releasenotes/notes/33737.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 33737
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 03 06:08:17 UTC 2021
    - 188 bytes
    - Viewed (0)
Back to top