Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 182 for reflect1 (0.35 sec)

  1. pkg/controller/daemon/daemon_controller.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package daemon
    
    import (
    	"context"
    	"fmt"
    	"reflect"
    	"sort"
    	"sync"
    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

    import java.io.Serializable;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.GenericArrayType;
    import java.lang.reflect.Method;
    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import java.lang.reflect.WildcardType;
    import java.util.ArrayList;
    import java.util.Collection;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package model
    
    import (
    	"encoding/json"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"google.golang.org/protobuf/types/known/durationpb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation.go

    	if !reflect.DeepEqual(new.Spec.ParamKind, old.Spec.ParamKind) {
    		return false
    	}
    	if !reflect.DeepEqual(new.Spec.MatchConditions, old.Spec.MatchConditions) {
    		return false
    	}
    	return true
    }
    
    // mutatingHasUniqueWebhookNames returns true if all webhooks have unique names
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    	"reflect"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/spf13/pflag"
    
    	eventv1 "k8s.io/api/events/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    	return mallocgc(typ.Size_, typ, true)
    }
    
    // reflect_unsafe_New is meant for package reflect,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/goccy/json
    //   - github.com/modern-go/reflect2
    //   - github.com/v2pro/plz
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    	_ "crypto/sha1"
    	_ "crypto/sha256"
    	_ "crypto/sha512"
    
    	"golang.org/x/crypto/cryptobyte"
    	cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1"
    )
    
    // pkixPublicKey reflects a PKIX public key structure. See SubjectPublicKeyInfo
    // in RFC 3280.
    type pkixPublicKey struct {
    	Algo      pkix.AlgorithmIdentifier
    	BitString asn1.BitString
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    func TestFairAlloc(t *testing.T) {
    	if e, a := []float64{0, 0}, fairAlloc([]float64{0, 0}, 42); !reflect.DeepEqual(e, a) {
    		t.Errorf("Expected %#+v, got #%+v", e, a)
    	}
    	if e, a := []float64{42, 0}, fairAlloc([]float64{47, 0}, 42); !reflect.DeepEqual(e, a) {
    		t.Errorf("Expected %#+v, got #%+v", e, a)
    	}
    	if e, a := []float64{1, 41}, fairAlloc([]float64{1, 47}, 42); !reflect.DeepEqual(e, a) {
    		t.Errorf("Expected %#+v, got #%+v", e, a)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package authn
    
    import (
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/davecgh/go-spew/spew"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  10. pkg/proxy/endpointschangetracker_test.go

    				// here, then expectedChanges[0] is what we expect.
    				expectedChange := tc.expectedChanges[0]
    
    				if !reflect.DeepEqual(change.previous, expectedChange.previous) {
    					t.Errorf("Expected change.previous: %+v, got: %+v", expectedChange.previous, change.previous)
    				}
    
    				if !reflect.DeepEqual(change.current, expectedChange.current) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
Back to top