Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 380 for sigs (0.07 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    // limitations under the License.
    
    // nolint: gocritic
    package ambient
    
    import (
    	"net/netip"
    	"strconv"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/ptr"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. operator/pkg/validate/common.go

    package validate
    
    import (
    	"fmt"
    	"net/netip"
    	"reflect"
    	"regexp"
    	"strconv"
    	"strings"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	scope = log.RegisterScope("validation", "API validation")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time_test.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	"encoding/json"
    	"fmt"
    	"reflect"
    	"testing"
    	"time"
    
    	cbor "k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct"
    	"sigs.k8s.io/yaml"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    )
    
    type MicroTimeHolder struct {
    	T MicroTime `json:"t"`
    }
    
    func TestMicroTimeMarshalYAML(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. istioctl/pkg/admin/istiodconfig.go

    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"net/url"
    	"regexp"
    	"sort"
    	"strings"
    	"sync"
    	"text/tabwriter"
    
    	"github.com/spf13/cobra"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/api/label"
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/istioctl/pkg/completion"
    	"istio.io/istio/pkg/log"
    )
    
    type flagState interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. src/os/signal/signal_test.go

    )
    
    // Test that Stop cancels the channel's registrations.
    func TestStop(t *testing.T) {
    	sigs := []syscall.Signal{
    		syscall.SIGWINCH,
    		syscall.SIGHUP,
    		syscall.SIGUSR1,
    	}
    
    	for _, sig := range sigs {
    		sig := sig
    		t.Run(fmt.Sprint(sig), func(t *testing.T) {
    			// When calling Notify with a specific signal,
    			// independent signals should not interfere with each other,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  6. pkg/registry/apps/statefulset/storage/storage.go

    	"k8s.io/kubernetes/pkg/printers"
    	printersinternal "k8s.io/kubernetes/pkg/printers/internalversion"
    	printerstorage "k8s.io/kubernetes/pkg/printers/storage"
    	"k8s.io/kubernetes/pkg/registry/apps/statefulset"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // StatefulSetStorage includes dummy storage for StatefulSets, and their Status and Scale subresource.
    type StatefulSetStorage struct {
    	StatefulSet *REST
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/storage/storage.go

    	printerstorage "k8s.io/kubernetes/pkg/printers/storage"
    	registrypod "k8s.io/kubernetes/pkg/registry/core/pod"
    	podrest "k8s.io/kubernetes/pkg/registry/core/pod/rest"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // PodStorage includes storage for pods and all sub resources
    type PodStorage struct {
    	Pod                 *REST
    	Binding             *BindingREST
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_test.go

    	"k8s.io/apimachinery/pkg/util/diff"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    	flag "github.com/spf13/pflag"
    	"sigs.k8s.io/yaml"
    )
    
    var fuzzIters = flag.Int("fuzz-iters", 50, "How many fuzzing iterations to do.")
    
    type testMetaFactory struct{}
    
    func (testMetaFactory) Interpret(data []byte) (*schema.GroupVersionKind, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

    */
    
    package jsonmergepatch
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    
    	jsonpatch "gopkg.in/evanphx/json-patch.v4"
    	"k8s.io/apimachinery/pkg/util/dump"
    	"k8s.io/apimachinery/pkg/util/json"
    	"sigs.k8s.io/yaml"
    )
    
    type FilterNullTestCases struct {
    	TestCases []FilterNullTestCase
    }
    
    type FilterNullTestCase struct {
    	Description         string
    	OriginalObj         map[string]interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package customresource
    
    import (
    	"context"
    	"fmt"
    	"strings"
    
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    
    	"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    	v1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top