Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for apiv1 (0.06 sec)

  1. pkg/kubemark/controller.go

    	node, ok := newObj.(*apiv1.Node)
    	if !ok {
    		return
    	}
    	for _, condition := range node.Status.Conditions {
    		// Delete node if it is in unready state, and it has been
    		// explicitly marked for deletion.
    		if condition.Type == apiv1.NodeReady && condition.Status != apiv1.ConditionTrue {
    			kubemarkCluster.nodesToDeleteLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/resourceconfig/helpers_test.go

    	appsv1 "k8s.io/api/apps/v1"
    	apiv1 "k8s.io/api/core/v1"
    	extensionsapiv1beta1 "k8s.io/api/extensions/v1beta1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	serverstore "k8s.io/apiserver/pkg/server/storage"
    )
    
    func TestParseRuntimeConfig(t *testing.T) {
    	scheme := newFakeScheme(t)
    	apiv1GroupVersion := apiv1.SchemeGroupVersion
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/server.go

    		lease.Labels[apiv1.LabelHostname] = hostname
    
    		// Include apiserver network location <ip_port> used by peers to proxy requests between kube-apiservers
    		if utilfeature.DefaultFeatureGate.Enabled(features.UnknownVersionInteroperabilityProxy) {
    			if peeraddress != "" {
    				lease.Annotations[apiv1.AnnotationPeerAdvertiseAddress] = peeraddress
    			}
    		}
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. pkg/controller/replication/conversion.go

    	v1listers "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    	appsinternal "k8s.io/kubernetes/pkg/apis/apps"
    	appsconversion "k8s.io/kubernetes/pkg/apis/apps/v1"
    	apiv1 "k8s.io/kubernetes/pkg/apis/core/v1"
    	"k8s.io/kubernetes/pkg/controller"
    )
    
    // informerAdapter implements ReplicaSetInformer by wrapping ReplicationControllerInformer
    // and converting objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 18:43:33 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. pkg/api/testing/defaulting_test.go

    limitations under the License.
    */
    
    package testing
    
    import (
    	"math/rand"
    	"reflect"
    	"sort"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    
    	apiv1 "k8s.io/api/core/v1"
    	extensionsv1beta1 "k8s.io/api/extensions/v1beta1"
    	"k8s.io/apimachinery/pkg/api/apitesting/roundtrip"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. pkg/controlplane/instance.go

    	batchapiv1 "k8s.io/api/batch/v1"
    	certificatesapiv1 "k8s.io/api/certificates/v1"
    	certificatesv1alpha1 "k8s.io/api/certificates/v1alpha1"
    	coordinationapiv1 "k8s.io/api/coordination/v1"
    	apiv1 "k8s.io/api/core/v1"
    	discoveryv1 "k8s.io/api/discovery/v1"
    	eventsv1 "k8s.io/api/events/v1"
    	networkingapiv1 "k8s.io/api/networking/v1"
    	networkingapiv1alpha1 "k8s.io/api/networking/v1alpha1"
    	nodev1 "k8s.io/api/node/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/zz_generated.deepcopy.go

    */
    
    // Code generated by deepcopy-gen. DO NOT EDIT.
    
    package config
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	apiv1 "k8s.io/component-base/tracing/api/v1"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *CredentialProvider) DeepCopyInto(out *CredentialProvider) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 09 11:19:11 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/strategy.go

    limitations under the License.
    */
    
    package pod
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"net/http"
    	"net/url"
    	"strconv"
    	"strings"
    	"time"
    
    	apiv1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. pilot/pkg/xds/testdata/none_lds_tcp.json

                        "cluster": {
                          "Kind": {
                            "StringValue": "outbound|2443||api1.facebook.com"
                          }
                        },
                        "stat_prefix": {
                          "Kind": {
                            "StringValue": "outbound|2443||api1.facebook.com"
                          }
                        }
                      }
                    }
                  }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

        void "can select distinct variants of the same component by using different attributes if they have different capabilities"() {
            given:
            repository {
                'org:test:1.0' {
                    variant('api1') {
                        attribute('custom', 'c1')
                        capability('cap1')
                    }
                    variant('api2') {
                        attribute('custom', 'c2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top