Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for _ignored (0.2 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types.go

    // FailurePolicyType specifies a failure policy that defines how unrecognized errors from the admission endpoint are handled.
    // +enum
    type FailurePolicyType string
    
    const (
    	// Ignore means that an error calling the webhook is ignored.
    	Ignore FailurePolicyType = "Ignore"
    	// Fail means that an error calling the webhook causes the admission to fail.
    	Fail FailurePolicyType = "Fail"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //   3. If any matchCondition evaluates to an error (but none are FALSE):
      //      - If failurePolicy=Fail, reject the request
      //      - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
      //
      // +patchMergeKey=name
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=name
      // +optional
      repeated MatchCondition matchConditions = 12;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/net/http/request.go

    	}
    	return ""
    }
    
    // PostFormValue returns the first value for the named component of the POST,
    // PUT, or PATCH request body. URL query parameters are ignored.
    // PostFormValue calls [Request.ParseMultipartForm] and [Request.ParseForm] if necessary and ignores
    // any errors returned by these functions.
    // If key is not present, PostFormValue returns the empty string.
    func (r *Request) PostFormValue(key string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_messages.go

    					return false
    				}
    			}
    		case extensionStatusRequest:
    			// RFC 4366, Section 3.6
    			var statusType uint8
    			var ignored cryptobyte.String
    			if !extData.ReadUint8(&statusType) ||
    				!extData.ReadUint16LengthPrefixed(&ignored) ||
    				!extData.ReadUint16LengthPrefixed(&ignored) {
    				return false
    			}
    			m.ocspStapling = statusType == statusTypeOCSP
    		case extensionSupportedCurves:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/strategy_test.go

    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name:               "keys, which are not found in Pod labels, are ignored",
    			featureGateEnabled: true,
    			pod: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{
    						"country": "Japan",
    						"city":    "Kyoto",
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. gradle/verification-metadata.xml

             <trust file=".*-javadoc[.]jar" regex="true"/>
             <trust file=".*-sources[.]jar" regex="true"/>
          </trusted-artifacts>
          <ignored-keys>
             <ignored-key id="74DAFDFD6DAE2441" reason="Key couldn't be downloaded from any key server"/>
          </ignored-keys>
          <trusted-keys>
             <trusted-key id="015479E1055341431B4545AB72475FD306B9CAB7" group="com.googlecode.javaewah"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                if (edgeState == incomingEdge) {
                    // These are my own constraints. I can not treat them as inherited,
                    // because that assumes that they are defined in another node as well and might be ignored.
                    filterOwn = true;
                    continue;
                }
                ComponentState targetComponent = edgeState.getTargetComponent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. src/go/build/build.go

    	CgoFiles          []string // .go source files that import "C"
    	IgnoredGoFiles    []string // .go source files ignored for this build (including ignored _test.go files)
    	InvalidGoFiles    []string // .go source files with detected problems (parse error, wrong package name, and so on)
    	IgnoredOtherFiles []string // non-.go source files ignored for this build
    	CFiles            []string // .c source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

                    APSInt convertedInt(/*BitWidth=*/8, /*isUnsigned=*/false);
                    bool ignored;
                    val.convertToInteger(convertedInt, APFloat::rmTowardZero,
                                         &ignored);
                    return convertedInt;
                  });
        } else if (isa<stablehlo::ConvertOp>(filter_op) &&
                   isa<stablehlo::ConstantOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  10. src/crypto/x509/x509.go

    	// Extensions contains raw X.509 extensions. When parsing certificates,
    	// this can be used to extract non-critical extensions that are not
    	// parsed by this package. When marshaling certificates, the Extensions
    	// field is ignored, see ExtraExtensions.
    	Extensions []pkix.Extension
    
    	// ExtraExtensions contains extensions to be copied, raw, into any
    	// marshaled certificates. Values override any extensions that would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top