Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 487 for Slice3 (0.07 sec)

  1. pkg/kube/krt/informer_test.go

    	"k8s.io/apimachinery/pkg/watch"
    
    	"istio.io/istio/pkg/config/schema/kubeclient"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient/clienttest"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestNewInformer(t *testing.T) {
    	c := kube.NewFakeClient()
    	ConfigMaps := krt.NewInformer[*corev1.ConfigMap](c)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller.go

    		return nil
    	}
    
    	if service.Spec.Selector == nil {
    		// services without a selector receive no endpoint slices from this controller;
    		// these services will receive endpoint slices that are created out-of-band via the REST API.
    		return nil
    	}
    
    	logger.V(5).Info("About to update endpoint slices for service", "key", key)
    
    	podLabelSelector := labels.Set(service.Spec.Selector).AsSelectorPreValidated()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. testing/internal-architecture-testing/src/main/java/org/gradle/internal/architecture/PackageCycleTest.java

                .collect(Collectors.toSet());
        }
    
        private static final SliceAssignment GRADLE_SLICE_ASSIGNMENT = new SliceAssignment() {
            @Override
            public String getDescription() {
                return "slices matching 'org.gradle.(**)";
            }
    
            @Override
            public SliceIdentifier getIdentifierOf(JavaClass javaClass) {
                if (isInIgnoredPackage(javaClass) || isIgnoredClass(javaClass)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/gofmt/testdata/rewrite2.golden

    // Copyright 2011 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 p
    
    // Slices have nil Len values in the corresponding ast.ArrayType
    // node and reflect.NewValue(slice.Len) is an invalid reflect.Value.
    // The rewriter must not crash in that case. Was issue 1696.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 407 bytes
    - Viewed (0)
  5. src/cmd/gofmt/testdata/rewrite2.input

    // Copyright 2011 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 p
    
    // Slices have nil Len values in the corresponding ast.ArrayType
    // node and reflect.NewValue(slice.Len) is an invalid reflect.Value.
    // The rewriter must not crash in that case. Was issue 1696.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 406 bytes
    - Viewed (0)
  6. test/fixedbugs/issue4614.go

    // compile
    
    // Copyright 2012 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.
    
    // Issue 4614: slicing of nil slices confuses the compiler
    // with a uintptr(nil) node.
    
    package p
    
    import "unsafe"
    
    var n int
    
    var _ = []int(nil)[1:]
    var _ = []int(nil)[n:]
    
    var _ = uintptr(unsafe.Pointer(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 419 bytes
    - Viewed (0)
  7. src/go/constant/example_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package constant_test
    
    import (
    	"fmt"
    	"go/constant"
    	"go/token"
    	"math"
    	"slices"
    )
    
    func Example_complexNumbers() {
    	// Create the complex number 2.3 + 5i.
    	ar := constant.MakeFloat64(2.3)
    	ai := constant.MakeImag(constant.MakeInt64(5))
    	a := constant.BinaryOp(ar, token.ADD, ai)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/testing/benchmark_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package testing_test
    
    import (
    	"bytes"
    	"cmp"
    	"runtime"
    	"slices"
    	"strings"
    	"sync/atomic"
    	"testing"
    	"text/template"
    	"time"
    )
    
    var prettyPrintTests = []struct {
    	v        float64
    	expected string
    }{
    	{0, "         0 x"},
    	{1234.1, "      1234 x"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pilot/pkg/trustbundle/trustbundle.go

    import (
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Source is all possible sources of MeshConfig
    type Source int
    
    const (
    	SourceIstioCA Source = iota
    	SourceMeshConfig
    	SourceIstioRA
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. docs_src/security/tutorial005_py310.py

            "email": "******@****.***",
            "hashed_password": "$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW",
            "disabled": False,
        },
        "alice": {
            "username": "alice",
            "full_name": "Alice Chains",
            "email": "******@****.***",
            "hashed_password": "$2b$12$gSvqqUPvlXP2tfVFaWK1Be7DlH.PKZbv5H8KnzzVgXXbVxpva.pFm",
            "disabled": True,
        },
    }
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top