Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 112 for scope_ (0.19 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Namespace defines the space within which each name must be unique. An empty namespace is
      // equivalent to the "default" namespace, but "default" is the canonical representation.
      // Not all objects are required to be scoped to a namespace - the value of this field for
      // those objects will be empty.
      //
      // Must be a DNS_LABEL.
      // Cannot be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.pb.go

    	}
    	return nil
    }
    
    type LoadBalancing struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// routing_preference defines what scopes we want to keep traffic within.
    	// The `mode` determines how these routing preferences are handled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_test.go

    			expected:   "aaefb9d8feed2d453b543f6d928cede7a4dbefa6a0ae7c9b990dd234c56e93b9",
    		},
    		{
    			cgroupPath: "/kubepods.slice/kubepods-burstable.slice/kubepods-burstable-pod2fc932ce_fdcc_454b_97bd_aadfdeb4c340.slice/cri-o-aaefb9d8feed2d453b543f6d928cede7a4dbefa6a0ae7c9b990dd234c56e93b9.scope",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

        }
    
        private Model interpolateModel(Model model, ModelBuildingRequest request, ModelProblemCollector problems) {
            // save profile activations before interpolation, since they are evaluated with limited scope
            Map<String, Activation> originalActivations = getProfileActivations(model, true);
    
            Model interpolatedModel = new Model(modelInterpolator.interpolateModel(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/jquery-3.6.3.min.js

    ClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=E)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{if(d.cssSupportsSelector&&!CSS.supports("selector(:is("+c+"))"))throw new Error;return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===E&...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    }
    
    func (t *Tester) ReturnDeletedObject() *Tester {
    	t.returnDeletedObject = true
    	return t
    }
    
    // TestNamespace returns the namespace that will be used when creating contexts.
    // Returns NamespaceNone for cluster-scoped objects.
    func (t *Tester) TestNamespace() string {
    	if t.clusterScope {
    		return metav1.NamespaceNone
    	}
    	return "test"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Namespace defines the space within which each name must be unique. An empty namespace is
    	// equivalent to the "default" namespace, but "default" is the canonical representation.
    	// Not all objects are required to be scoped to a namespace - the value of this field for
    	// those objects will be empty.
    	//
    	// Must be a DNS_LABEL.
    	// Cannot be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  8. pilot/pkg/networking/core/listener.go

    			protocolName(c.newProtocol),
    			c.newHostname))
    }
    
    // buildSidecarOutboundListeners generates http and tcp listeners for
    // outbound connections from the proxy based on the sidecar scope associated with the proxy.
    func (lb *ListenerBuilder) buildSidecarOutboundListeners(node *model.Proxy,
    	push *model.PushContext,
    ) []*listener.Listener {
    	noneMode := node.GetInterceptionMode() == model.InterceptionNone
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. tests/migrate_test.go

    				t.Fatalf("Failed to get table %v when GetTables", t1)
    			}
    		}
    	}
    
    	for _, m := range allModels {
    		if !DB.Migrator().HasTable(m) {
    			t.Fatalf("Failed to create table for %#v", m)
    		}
    	}
    
    	DB.Scopes(func(db *gorm.DB) *gorm.DB {
    		return db.Table("ccc")
    	}).Migrator().CreateTable(&Company{})
    
    	if !DB.Migrator().HasTable("ccc") {
    		t.Errorf("failed to create table ccc")
    	}
    
    	for _, indexes := range [][2]string{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		}
    		scoper, ok := parentStorage.(rest.Scoper)
    		if !ok {
    			return nil, nil, fmt.Errorf("%q must implement scoper", resource)
    		}
    		namespaceScoped = scoper.NamespaceScoped()
    
    	} else {
    		scoper, ok := storage.(rest.Scoper)
    		if !ok {
    			return nil, nil, fmt.Errorf("%q must implement scoper", resource)
    		}
    		namespaceScoped = scoper.NamespaceScoped()
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top