Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for filelist (0.26 sec)

  1. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo_test.go

    current-context: kubernetes-admin@kubernetes
    kind: Config
    preferences: {}
    users:
    - name: kubernetes-admin`))
    
    func TestCreateBootstrapConfigMapIfNotExists(t *testing.T) {
    	tests := []struct {
    		name      string
    		fileExist bool
    		createErr error
    		expectErr bool
    	}{
    		{
    			"successful case should have no error",
    			true,
    			nil,
    			false,
    		},
    		{
    			"if configmap already exists, return error",
    			true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/nodes.go

    	}
    
    	// []Elem
    	SliceType struct {
    		Elem Expr
    		expr
    	}
    
    	// ...Elem
    	DotsType struct {
    		Elem Expr
    		expr
    	}
    
    	// struct { FieldList[0] TagList[0]; FieldList[1] TagList[1]; ... }
    	StructType struct {
    		FieldList []*Field
    		TagList   []*BasicLit // i >= len(TagList) || TagList[i] == nil means no tag for field i
    		expr
    	}
    
    	// Name Type
    	//      Type
    	Field struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1beta1/zz_generated.prerelease-lifecycle.go

    func (in *RoleList) APILifecycleDeprecated() (major, minor int) {
    	return 1, 17
    }
    
    // APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type.
    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *RoleList) APILifecycleReplacement() schema.GroupVersionKind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13.1K bytes
    - Viewed (0)
  4. src/runtime/symtabinl.go

    func badSrcFunc(*inlineUnwinder, inlineFrame) srcFunc
    
    // fileLine returns the file name and line number of the call within the given
    // frame. As a convenience, for the innermost frame, it returns the file and
    // line of the PC this unwinder was started at (often this is a call to another
    // physical function).
    //
    // It returns "?", 0 if something goes wrong.
    func (u *inlineUnwinder) fileLine(uf inlineFrame) (file string, line int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    	}
    	return objectGVK, mapping.Resource, nil
    }
    
    type FakeList[T runtime.Object] struct {
    	metav1.TypeMeta
    	metav1.ListMeta
    	Items []T
    }
    
    func (fl *FakeList[P]) DeepCopyObject() runtime.Object {
    	copiedItems := make([]P, len(fl.Items))
    	for i, item := range fl.Items {
    		copiedItems[i] = item.DeepCopyObject().(P)
    	}
    	return &FakeList[P]{
    		TypeMeta: fl.TypeMeta,
    		ListMeta: fl.ListMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java

                List<QueryBuilder> filterList) {
            assertObjectNotNull("mustList", mustList);
            assertObjectNotNull("shouldList", shouldList);
            assertObjectNotNull("mustNotList", mustNotList);
            assertObjectNotNull("filterList", filterList);
            BoolQueryBuilder boolQuery = QueryBuilders.boolQuery();
            mustList.forEach(query -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

            String fileLink = "<div uk-tooltip=\"title: From repository '" + repositoryName + "'\">";
            fileLink += "<a href=\"" + vf.getFilePath().toURI().toASCIIString() + "\">" + key.getFileName() + "</a>";
            File signatureFile = vf.getSignatureFile();
            if (signatureFile != null) {
                fileLink += "&nbsp;<a href=\"" + signatureFile.toURI().toASCIIString() + "\">(.asc)</a>";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. src/go/ast/ast.go

    		TypeParams *FieldList // type parameters; or nil
    		Params     *FieldList // (incoming) parameters; non-nil
    		Results    *FieldList // (outgoing) results; or nil
    	}
    
    	// An InterfaceType node represents an interface type.
    	InterfaceType struct {
    		Interface  token.Pos  // position of "interface" keyword
    		Methods    *FieldList // list of embedded interfaces, methods, or types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

      // Items is a list of RoleBindings
      repeated RoleBinding items = 2;
    }
    
    // RoleList is a collection of Roles.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.
    message RoleList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1beta1/types_swagger_doc_generated.go

    	return map_RoleBindingList
    }
    
    var map_RoleList = map[string]string{
    	"":         "RoleList is a collection of Roles Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.",
    	"metadata": "Standard object's metadata.",
    	"items":    "Items is a list of Roles",
    }
    
    func (RoleList) SwaggerDoc() map[string]string {
    	return map_RoleList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top