Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for withZip (0.15 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	PullPolicy string `protobuf:"bytes,5,opt,name=pullPolicy,proto3" json:"pullPolicy,omitempty"`
    	// The directory path within the cluster node's filesystem where the CNI binaries are to be installed. Typically /var/lib/cni/bin.
    	CniBinDir string `protobuf:"bytes,6,opt,name=cniBinDir,proto3" json:"cniBinDir,omitempty"`
    	// The directory path within the cluster node's filesystem where the CNI configuration files are to be installed. Typically /etc/cni/net.d.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	"SecurityContext":          true,
    	"Stdin":                    true,
    	"StdinOnce":                true,
    	"TTY":                      true,
    }
    
    // validOS stores the set of valid OSes within pod spec.
    // The valid values currently are linux, windows.
    // In future, they can be expanded to values from
    // https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration
    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. CHANGELOG/CHANGELOG-1.29.md

      
      <!--
      This section can be blank if this pull request does not require a release note.
      
      When adding links which point to resources within git repositories, like
      KEPs or supporting documentation, please reference a specific commit and avoid
      linking directly to the master branch. This ensures that links reference a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-58697`](https://youtrack.jetbrains.com/issue/KT-58697) K2: Tests: Assert no dump files exist when dump directive isn't present
    - [`KT-63258`](https://youtrack.jetbrains.com/issue/KT-63258) NPE with function reference from within lambda during init
    - [`KT-60597`](https://youtrack.jetbrains.com/issue/KT-60597) K1: IllegalArgumentException: fromIndex(0) > toIndex(-1) when wrapping receiver with backticks
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	// optionally allows an ABI suffix specification in the GOSSAHASH, e.g. "(*Reader).Reset<0>" etc
    	if strings.Contains(ssaDump, name) { // in all the cases the function name is entirely contained within the GOSSAFUNC string.
    		nameOptABI := name
    		if strings.Contains(ssaDump, ",") { // ABI specification
    			nameOptABI = ssa.FuncNameABI(name, abiSelf.Which())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    type http2ConnectionError http2ErrCode
    
    func (e http2ConnectionError) Error() string {
    	return fmt.Sprintf("connection error: %s", http2ErrCode(e))
    }
    
    // StreamError is an error that only affects one stream within an
    // HTTP/2 connection.
    type http2StreamError struct {
    	StreamID uint32
    	Code     http2ErrCode
    	Cause    error // optional additional detail
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            begin = (input_shape[i] - 1) - begin;
            end = (input_shape[i] - 1) - end;
            stride = -stride;
          }
    
          // Unlike TensorFlow, HLO requires begin and end values to be within
          // range.
          begin = std::max(int64_t(0), begin);
          end = std::max(begin, end);
          end = std::min(end, input_shape[i]);
    
          hlo_begin_indices.push_back(begin);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    set(u.parent,[c,u.source]);let[f,d]=Th(u.params);if(u.parent.type==="atrule"){if(u.parent.name==="screen"){let p=u.parent.params;throw u.error(`@apply is not supported within nested at-rules like @screen. We suggest you write this as @apply ${f.map(m=>`${p}:${m}`).join(" ")} instead.`)}throw u.error(`@apply is not supported within nested at-rules like @${u.parent.name}. You can fix this by un-nesting @${u.parent.name}.`)}for(let p of f){if([Oh(e,"group"),Oh(e,"peer")].includes(p))throw u.error(`@apply...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  9. pkg/proxy/iptables/proxier_test.go

    // packet with the given sourceIP, destIP, and destPort.
    func (tracer *iptablesTracer) ruleMatches(rule *iptablestest.Rule, sourceIP, protocol, destIP, destPort string) bool {
    	// The sub-rules within an iptables rule are ANDed together, so the rule only
    	// matches if all of them match. So go through the subrules, and if any of them
    	// DON'T match, then fail.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
Back to top