Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for rejections (0.18 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

        | org.gradle.jvm.environment     |          | standard-jvm |
        | org.gradle.jvm.version         |          | ${jvmVersion.padRight("standard-jvm".length())} |
       Selection reasons:
          - Rejection: 1.2 by rule because version 1.2 is bad
          - Rejection: 1.1 by rule because version 1.1 is bad
    
    org:bar:[1.0,) -> 1.0
    \\--- compileClasspath
    
    org:foo:1.1
      Variant compile:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "seriesOverrides": [], "spaceLength": 10, "stack": false, "steppedLine": false, "targets": [ { "expr": "sum(rate(sidecar_injection_success_total[1m]))", "interval": "", "legendFormat": "Injections (Success)", "refId": "A" }, { "expr": "sum(rate(sidecar_injection_failure_total[1m]))", "interval": "", "legendFormat": "Injections (Failure)", "refId": "B" } ], "thresholds": [], "timeFrom": null, "timeRegions": [], "timeShift": null, "title": "Sidecar Injection", "tooltip": { "shared": true, "sort": 0, "value_type":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==",
          "dev": true
        },
        "node_modules/hard-rejection": {
          "version": "2.1.0",
          "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz",
          "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    			},
    			valid: false,
    		},
    
    		{
    			name: "invalid outlier detection, bad base ejection time", in: &networking.OutlierDetection{
    				BaseEjectionTime: &durationpb.Duration{Seconds: 2, Nanos: 5},
    			},
    			valid: false,
    		},
    
    		{
    			name: "invalid outlier detection, bad max ejection percent", in: &networking.OutlierDetection{
    				MaxEjectionPercent: 105,
    			},
    			valid: false,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    is agnostic to where the origin is in the coordinate system and more
    generally is invariant to orthogonal transformations and translations
    of the coordinate system; thus translating or reflections of the coordinate
    system result in the same boxes being selected by the algorithm.
    The output of this operation is a set of integers indexing into the input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            auto filter_type = mlir::dyn_cast<RankedTensorType>(filter.getType());
            // Filter must be a `2D` tensor with `{num_channels, num_features}`
            // shape. The following check is rejecting unknown rank (-1).
            if (filter_type == nullptr || filter_type.getRank() != 2) {
              return failure();
            }
            int num_channels = filter_type.getShape()[0];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    		if err := checkDryRunAnnotation(config, isAuthz); err != nil {
    			return nil, err
    		}
    		if _, f := config.Annotations[constants.AlwaysReject]; f {
    			return nil, fmt.Errorf("%q annotation found, rejecting", constants.AlwaysReject)
    		}
    		return f(config)
    	}
    }
    
    func checkDryRunAnnotation(cfg config.Config, allowed bool) error {
    	if val, found := cfg.Annotations[annotation.IoIstioDryRun.Name]; found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// run. A pod rejected by a softAdmitHandler will be left in a Pending state indefinitely. If a
    	// rejected pod should not be recreated, or the scheduler is not aware of the rejection rule, the
    	// admission rule should be applied by a softAdmitHandler.
    	softAdmitHandlers lifecycle.PodAdmitHandlers
    
    	// the list of handlers to call during pod sync loop.
    	lifecycle.PodSyncLoopHandlers
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    					// Without this special-case hack, the TestScript/test_vet case fails
    					// on the vetfail/p1 package (added in CL 83955).
    					// Apparently, imports.ShouldBuild biases toward rejecting files
    					// with invalid build constraints, whereas ImportDir biases toward
    					// accepting them.
    					//
    					// TODO(#41410: Figure out how this actually ought to work and fix
    					// this mess).
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int32",
              "type": "integer"
            },
            "sources": {
              "description": "list of volume projections",
              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.VolumeProjection"
              },
              "type": "array"
            }
          },
          "required": [
            "sources"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top