Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for namespace_a (0.12 sec)

  1. pkg/controller/podautoscaler/replica_calculator_test.go

    	container string
    
    	podReadiness         []v1.ConditionStatus
    	podStartTime         []metav1.Time
    	podPhase             []v1.PodPhase
    	podDeletionTimestamp []bool
    }
    
    const (
    	testNamespace       = "test-namespace"
    	podNamePrefix       = "test-pod"
    	numContainersPerPod = 2
    )
    
    func (tc *replicaCalcTestCase) prepareTestClientSet() *fake.Clientset {
    	fakeClient := &fake.Clientset{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    	want: `<foo>`,
    }, {
    	desc: "mismatching end tag namespace",
    	toks: []Token{
    		StartElement{Name{"space", "foo"}, nil},
    		EndElement{Name{"another", "foo"}},
    	},
    	err:  "xml: end tag </foo> in namespace another does not match start tag <foo> in namespace space",
    	want: `<foo xmlns="space">`,
    }, {
    	desc: "start element with explicit namespace",
    	toks: []Token{
    		StartElement{Name{"space", "local"}, []Attr{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_test.go

    		},
    	},
    }
    
    var (
    	exampleService         = []*model.Service{{Hostname: "*.example.org", Attributes: model.ServiceAttributes{Namespace: "istio-system"}}}
    	exampleWildcardService = &model.Service{
    		Hostname:   "*.example.org",
    		Attributes: model.ServiceAttributes{Namespace: "istio-system"},
    		Ports:      []*model.Port{{Port: 8080, Protocol: "HTTP"}},
    	}
    	exampleNestedWildcardService = &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_ParamRef_To_admissionregistration_ParamRef(in *v1.ParamRef, out *admissionregistration.ParamRef, s conversion.Scope) error {
    	out.Name = in.Name
    	out.Namespace = in.Namespace
    	out.Selector = (*metav1.LabelSelector)(unsafe.Pointer(in.Selector))
    	out.ParameterNotFoundAction = (*admissionregistration.ParameterNotFoundActionType)(unsafe.Pointer(in.ParameterNotFoundAction))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:30 UTC 2024
    - 73.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

    // symbolic predicate to each merge on the first iteration.  We still use
    // symbolic predicates for merges for which we can't pattern match on the
    // backedge predicate.  This is conservatively correct.
    
    namespace tensorflow {
    
    namespace {
    
    using tsl::StatusOr;
    
    // Represents a logical predicate, used as described in the algorithm overview
    // above.
    class Predicate {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	return &startSpec{
    		container:          (*v1.Container)(&ec.EphemeralContainerCommon),
    		ephemeralContainer: ec,
    	}
    }
    
    // getTargetID returns the kubecontainer.ContainerID for ephemeral container namespace
    // targeting. The target is stored as EphemeralContainer.TargetContainerName, which must be
    // resolved to a ContainerID using podStatus. The target container must already exist, which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/test.h"
    
    using ::tensorflow::testing::FindNodeByName;
    
    namespace tensorflow {
    namespace {
    
    static bool Initialized = [] {
      tensorflow::GetXlaDeviceFlags()->tf_xla_enable_xla_devices = true;
      return true;
    }();
    
    REGISTER_OP("UncompilableNullary").Output("o: float");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_logging_test.go

    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			nil, // No Telemetry API configured, fall back to legacy mesh config setting
    		},
    		{
    			"prometheus-namespace",
    			[]config.Config{newTelemetry("default", prometheus)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			nil, // No Telemetry API configured, fall back to legacy mesh config setting
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	defer nc.podUpdateQueue.Done(podItem)
    	pod, err := nc.podLister.Pods(podItem.namespace).Get(podItem.name)
    	logger := klog.FromContext(ctx)
    	if err != nil {
    		if apierrors.IsNotFound(err) {
    			// If the pod was deleted, there is no need to requeue.
    			return
    		}
    		logger.Info("Failed to read pod", "pod", klog.KRef(podItem.namespace, podItem.name), "err", err)
    		nc.podUpdateQueue.AddRateLimited(podItem)
    		return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    }
    
    func (m *Subject) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i -= len(m.Namespace)
    	copy(dAtA[i:], m.Namespace)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Namespace)))
    	i--
    	dAtA[i] = 0x22
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0x1a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top