Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 946 for sigs (0.14 sec)

  1. 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)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/conflict_test.go

    import (
    	"net/http"
    	"reflect"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/managedfields/internal"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    	"sigs.k8s.io/structured-merge-diff/v4/merge"
    )
    
    // TestNewConflictError tests that NewConflictError creates the correct StatusError for a given smd Conflicts
    func TestNewConflictError(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/typeconverter_test.go

    limitations under the License.
    */
    
    package internal
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    
    	"github.com/stretchr/testify/require"
    	smdschema "sigs.k8s.io/structured-merge-diff/v4/schema"
    	"sigs.k8s.io/structured-merge-diff/v4/typed"
    	"sigs.k8s.io/yaml"
    
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 6.6K 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/go.sum

    sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo=
    sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
    sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. cluster/gce/windows/README-GCE-Windows-kube-up.md

    ## Running e2e tests against the cluster
    
    If you brought up an end-to-end test cluster using the steps above then you can
    use the steps below to run K8s e2e tests. These steps are based on
    [kubernetes-sigs/windows-testing](https://github.com/kubernetes-sigs/windows-testing).
    
    *   Build the necessary test binaries. This must be done after every change to
        test code.
    
        ```bash
        make WHAT=test/e2e/e2e.test
        ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/pathelement.go

    limitations under the License.
    */
    
    package internal
    
    import (
    	"encoding/json"
    	"errors"
    	"fmt"
    	"strconv"
    	"strings"
    
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    	"sigs.k8s.io/structured-merge-diff/v4/value"
    )
    
    const (
    	// Field indicates that the content of this path element is a field's name
    	Field = "f"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/managedfields.go

    */
    
    package internal
    
    import (
    	"encoding/json"
    	"fmt"
    	"sort"
    
    	"k8s.io/apimachinery/pkg/api/meta"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // ManagedInterface groups a fieldpath.ManagedFields together with the timestamps associated with each operation.
    type ManagedInterface interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top