Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for retract (0.22 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					"Create an instance with a soon-to-be-invalid value",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"enumField": "okValueNowBadValueLater",
    					}},
    				patchMyCRDV1Beta1Schema{
    					"restrict `enumField` to an enum of A, B, or C",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"enumField": map[string]interface{}{
    								"enum": []interface{}{
    									"A", "B", "C",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    	}
    	return protocol
    }
    
    func isMeshed(pod *corev1.Pod) bool {
    	return inject.FindSidecar(pod) != nil
    }
    
    // Extract value of key out of Struct, but always return a Struct, even if the value isn't one
    func (v *myProtoValue) keyAsStruct(key string) *myProtoValue {
    	if v == nil || v.GetStructValue() == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          state.dilation_width_factor = intAttrOne;
        }
    
        TFPaddingIsSameOrValid(op, &state.padding);
    
        // Additionally, we require the filter operand to be of 4-D tensor type so
        // that we can extract info from the shape (e.g., for constructing bias
        // tensor, for setting depth_multiplier attribute, etc.).
        auto filter = tf_op.getFilter();
        auto filter_type = mlir::dyn_cast<RankedTensorType>(filter.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		return fmt.Errorf("failed to swap taints of node %+v", node)
    	}
    	return nil
    }
    
    func (nc *Controller) doNoExecuteTaintingPass(ctx context.Context) {
    	// Extract out the keys of the map in order to not hold
    	// the evictorLock for the entire function and hold it
    	// only when nescessary.
    	var zoneNoExecuteTainterKeys []string
    	func() {
    		nc.evictorLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    		lengthRange := postPolicyForm.Conditions.ContentLengthRange
    		if lengthRange.Valid {
    			hashReader.SetExpectedMin(lengthRange.Min)
    			hashReader.SetExpectedMax(lengthRange.Max)
    		}
    	}
    
    	// Extract metadata to be saved from received Form.
    	metadata := make(map[string]string)
    	err = extractMetadataFromMime(ctx, textproto.MIMEHeader(formValues), metadata)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    			SupportedPoints:   []uint8{pointFormatUncompressed},
    			SignatureSchemes:  []SignatureScheme{ECDSAWithP384AndSHA384},
    			SupportedVersions: []uint16{VersionTLS12},
    		}, ""}, // TLS 1.2 does not restrict curves based on the SignatureScheme.
    		{ecdsaCert, &ClientHelloInfo{
    			CipherSuites:      []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
    			SupportedCurves:   []CurveID{CurveP256},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val response1 = responses.take()
        assertThat(response1).isEqualTo("")
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
    
        // Now make the second request which will restrict the first HTTP/2 connection from creating new
        // streams.
        client.newCall(request).enqueue(callback)
        val response2 = responses.take()
        assertThat(response2).isEqualTo("DEF")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    func (check *Checker) incomparableCause(typ Type) string {
    	switch under(typ).(type) {
    	case *Slice, *Signature, *Map:
    		return check.kindString(typ) + " can only be compared to nil"
    	}
    	// see if we can extract a more specific error
    	var cause string
    	comparable(typ, true, nil, func(format string, args ...interface{}) {
    		cause = check.sprintf(format, args...)
    	})
    	return cause
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    		if oldR&r == 0 {
    			if parent.Func.pass.debug > 2 {
    				parent.Func.Warnl(parent.Pos, "unsat %s %s %s", v, w, r)
    			}
    			ft.unsat = true
    			return
    		}
    	}
    
    	// Extract bounds when comparing against constants
    	if v.isGenericIntConst() {
    		v, w = w, v
    		r = reverseBits[r]
    	}
    	if v != nil && w.isGenericIntConst() {
    		// Note: all the +1/-1 below could overflow/underflow. Either will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      enum Mode {
        // Outbound traffic to unknown destinations will be allowed, in case there are no services or ServiceEntries for the destination port
        ALLOW_ANY = 0;
        // Restrict outbound traffic to services defined in the service registry as well as those defined through ServiceEntries
        REGISTRY_ONLY = 1;
      }
      Mode mode = 2;
    }
    
    // Configuration for Pilot.
    message PilotConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top