Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Style (0.17 sec)

  1. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    aults border-width",{}],"border-left-width"]]]],{type:["line-width","length"]}),borderStyle:({addUtilities:i})=>{i({".border-solid":{"border-style":"solid"},".border-dashed":{"border-style":"dashed"},".border-dotted":{"border-style":"dotted"},".border-double":{"border-style":"double"},".border-hidden":{"border-style":"hidden"},".border-none":{"border-style":"none"}})},borderColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({border:r=>t("borderOpacity")?se({color:r,property:"border-color",vari...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  2. ChangeLog.md

    - [`KT-7389`](https://youtrack.jetbrains.com/issue/KT-7389) Intersection type for type parameter with multiple upper bounds in star projection
    - [`KT-63477`](https://youtrack.jetbrains.com/issue/KT-63477) Consider supporting builder-style type inference from Unit coercion of last statements in lambdas
    - [`KT-61907`](https://youtrack.jetbrains.com/issue/KT-61907) K2: builder inference works with assignments to member properties
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// +optional
    	AllocateLoadBalancerNodePorts *bool
    
    	// loadBalancerClass is the class of the load balancer implementation this Service belongs to.
    	// If specified, the value of this field must be a label-style identifier, with an optional prefix,
    	// e.g. "internal-vip" or "example.com/internal-vip". Unprefixed names are reserved for end-users.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// loadBalancerClass is the class of the load balancer implementation this Service belongs to.
    	// If specified, the value of this field must be a label-style identifier, with an optional prefix,
    	// e.g. "internal-vip" or "example.com/internal-vip". Unprefixed names are reserved for end-users.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    changes, most of which are rare use cases, bug fixes with side effects, or things that have been deprecated for multiple releases already:
      
      - https://github.com/kubernetes-sigs/kustomize/pull/4911: Drop support for a very old, legacy style of patches. patches used to be allowed to be used as an alias for patchesStrategicMerge in kustomize v3. You now have to use patchesStrategicMerge explicitly, or update to the new syntax supported by patches. See examples in the PR description of ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    * 📝 Add External Link, replaces #1898. PR [#3571](https://github.com/tiangolo/fastapi/pull/3571) by [@tiangolo](https://github.com/tiangolo).
    
    ### Internal
    
    * 🎨 Improve style for sponsors, add radius border. PR [#2388](https://github.com/tiangolo/fastapi/pull/2388) by [@Kludex](https://github.com/Kludex).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            return rewriter.notifyMatchFailure(op, "requires ranked output shape");
          }
          auto rank_diff = ranked_output_type.getRank() - input_type.getRank();
          // The tf.BroadcastTo op performs "right-aligned" numpy-style
          // broadcasting.
          broadcast_dimensions = llvm::to_vector<4>(
              llvm::seq<int64_t>(rank_diff, ranked_output_type.getRank()));
        }
        rewriter.replaceOpWithNewOp<DynamicBroadcastInDimOp>(
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"loadBalancerClass":             "loadBalancerClass is the class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix, e.g. \"internal-vip\" or \"example.com/internal-vip\". Unprefixed names are reserved for end-users. This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load balancer implementation...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssagen
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"go/constant"
    	"html"
    	"internal/buildcfg"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/liveness"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    //
    // See https://http2.golang.org/ for a test server running this code.
    //
    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    //
    
    package http
    
    import (
    	"bufio"
    	"bytes"
    	"compress/gzip"
    	"context"
    	"crypto/rand"
    	"crypto/tls"
    	"encoding/binary"
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top