Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 250 for sigs (0.04 sec)

  1. releasenotes/notes/gateway-gwc-publish-supportedfeatures.yaml

    apiVersion: release-notes/v2
    
    kind: feature
    area: traffic-management
    issue:
      - https://github.com/kubernetes-sigs/gateway-api/issues/2162
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 290 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/typeconverter.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/kube-openapi/pkg/schemaconv"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    	smdschema "sigs.k8s.io/structured-merge-diff/v4/schema"
    	"sigs.k8s.io/structured-merge-diff/v4/typed"
    	"sigs.k8s.io/structured-merge-diff/v4/value"
    )
    
    // TypeConverter allows you to convert from runtime.Object to
    // typed.TypedValue and the other way around.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. releasenotes/notes/2309-gateway-api.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - https://github.com/kubernetes-sigs/gateway-api/issues/2309
    
    releaseNotes:
    - |
      **Fixed** Istio's Gateway API implementation to adhere to the Gateway API
      requirement that a `group: ""` field must be set for a `parentRef` of `kind: Service`.
      Istio previously tolerated the missing group for Service-kind parent references. This
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 22:57:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  4. src/os/signal/signal.go

    type handler struct {
    	mask [(numSig + 31) / 32]uint32
    }
    
    func (h *handler) want(sig int) bool {
    	return (h.mask[sig/32]>>uint(sig&31))&1 != 0
    }
    
    func (h *handler) set(sig int) {
    	h.mask[sig/32] |= 1 << uint(sig&31)
    }
    
    func (h *handler) clear(sig int) {
    	h.mask[sig/32] &^= 1 << uint(sig&31)
    }
    
    // Stop relaying the signals, sigs, to any channels previously registered to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/structuredmerge.go

    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    	"sigs.k8s.io/structured-merge-diff/v4/merge"
    	"sigs.k8s.io/structured-merge-diff/v4/typed"
    )
    
    type structuredMergeManager struct {
    	typeConverter   TypeConverter
    	objectConverter runtime.ObjectConvertor
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/gatewayclass.go

    package gateway
    
    import (
    	"github.com/hashicorp/go-multierror"
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	k8sv1 "sigs.k8s.io/gateway-api/apis/v1"
    	gateway "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	"istio.io/istio/pilot/pkg/model/kstatus"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. hack/tools/tools.go

    	_ "github.com/aojea/sloppy-netparser"
    	_ "github.com/client9/misspell/cmd/misspell"
    	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
    	_ "github.com/jcchavezs/porto/cmd/porto"
    	_ "honnef.co/go/tools/cmd/staticcheck"
    	_ "sigs.k8s.io/logtools/logcheck"
    
    	// benchmarking tools
    	_ "github.com/cespare/prettybench"
    	_ "gotest.tools/gotestsum"
    
    	// mockgen
    	_ "go.uber.org/mock/mockgen"
    
    	// tools like cpu
    	_ "go.uber.org/automaxprocs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/register.go

    // +k8s:deepcopy-gen=package,register
    // +groupName=install.istio.io
    package v1alpha1
    
    import (
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"sigs.k8s.io/controller-runtime/pkg/scheme"
    )
    
    var (
    	// IstioOperatorGVK is GVK for IstioOperator
    	IstioOperatorGVK = schema.GroupVersionKind{
    		Version: "v1alpha1",
    		Group:   "install.istio.io",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. prow/integ-suite-kind.sh

    export FAST_VM_BUILDS=true
    export ISTIO_DOCKER_BUILDER="${ISTIO_DOCKER_BUILDER:-crane}"
    
    PARAMS=()
    
    while (( "$#" )); do
      case "$1" in
        # Node images can be found at https://github.com/kubernetes-sigs/kind/releases
        # For example, kindest/node:v1.14.0
        --node-image)
          NODE_IMAGE=$2
          shift 2
        ;;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. operator/cmd/mesh/shared.go

    // limitations under the License.
    
    // Package mesh contains types and functions.
    package mesh
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"strings"
    	"time"
    
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	controllruntimelog "sigs.k8s.io/controller-runtime/pkg/log"
    
    	"istio.io/istio/istioctl/pkg/install/k8sversion"
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/cache"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top