Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for wren (0.46 sec)

  1. prow/config/calico.yaml

                    description: 'BPFCTLBLogFilter specifies, what is logged by connect
                      time load balancer when BPFLogLevel is debug. Currently has to be
                      specified as ''all'' when BPFLogFilters is set to see CTLB logs.
                      [Default: unset - means logs are emitted when BPFLogLevel id debug
                      and BPFLogFilters not set.]'
                    type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("hostNetwork"), "when `pod.Spec.HostUsers` is false"))
    	}
    	if spec.SecurityContext.HostPID {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("HostPID"), "when `pod.Spec.HostUsers` is false"))
    	}
    	if spec.SecurityContext.HostIPC {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("HostIPC"), "when `pod.Spec.HostUsers` is false"))
    	}
    
    	return allErrs
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    type http2pipe struct {
    	mu       sync.Mutex
    	c        sync.Cond       // c.L lazily initialized to &p.mu
    	b        http2pipeBuffer // nil when done reading
    	unread   int             // bytes unread when done
    	err      error           // read error once empty. non-nil means closed.
    	breakErr error           // immediate read error (caller doesn't see rest of b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

        * This can solve nuanced errors when using middlewares. Before Starlette `0.24.0`, a new instance of each middleware class would be created when a new middleware was added. That normally was not a problem, unless the middleware class expected to be created only once, with only one instance, that happened in some cases. This upgrade would...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. doc/go_spec.html

    The conversion always yields a valid value; there is no indication of overflow.
    </li>
    <li>
    When converting a <a href="#Numeric_types">floating-point number</a> to an integer, the fraction is discarded
    (truncation towards zero).
    </li>
    <li>
    When converting an integer or floating-point number to a floating-point type,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (!input_type || !input_type.hasStaticShape()) return failure();
    
        // We can only match when the split dimension is a constant scalar.
        DenseIntElementsAttr split_dim_attr;
        if (!matchPattern(op.getSplitDim(), m_Constant(&split_dim_attr)))
          return failure();
    
        // We can only match when the split sizes is a constant int vector.
        DenseIntElementsAttr split_sizes_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		// direction. OpMove does not.)
    		//
    		// Note that we have to be careful here not to introduce a call when
    		// we're marshaling arguments to a call or unmarshaling results from a call.
    		// Cases where this is happening must pass mayOverlap to false.
    		// (Currently this only happens when unmarshaling results of a call.)
    		if t.HasPointers() {
    			s.rtcall(ir.Syms.Typedmemmove, true, nil, s.reflectType(t), dst, src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier_test.go

    	// didn't change (and syncProxyRules doesn't automatically do a full resync when you
    	// cross the largeClusterEndpointsThreshold).
    	if numEndpoints != 3 {
    		t.Errorf("Found wrong number of endpoints on partial resync: expected %d, got %d", 3, numEndpoints)
    	}
    	if numComments != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Configuration for the CNI Repair controller.
    	Repair *CNIRepairConfig `protobuf:"bytes,13,opt,name=repair,proto3" json:"repair,omitempty"`
    	// Configure the plugin as a chained CNI plugin. When true, the configuration is added to the CNI chain; when false,
    	// the configuration is added as a standalone file in the CNI configuration directory.
    	Chained *wrapperspb.BoolValue `protobuf:"bytes,14,opt,name=chained,proto3" json:"chained,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    )||typeof r=="function"?n=r:typeof r=="string"&&(n=[r]),Array.isArray(n))for(let a of n)a===".dark"?(t=!1,F.warn("darkmode-variant-without-selector",["When using `variant` for `darkMode`, you must provide a selector.",'Example: `darkMode: ["variant", ".your-selector &"]`'])):a.includes("&")||(t=!1,F.warn("darkmode-variant-without-ampersand",["When using `variant` for `darkMode`, your selector must contain `&`.",'Example `darkMode: ["variant", ".your-selector &"]`']));r=n}t==="selector"?e("dark",`&:where(${r},...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top