Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for shortNames (0.24 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	}
    
    	for i, shortName := range names.ShortNames {
    		if errs := utilvalidation.IsDNS1035Label(shortName); len(errs) > 0 {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("shortNames").Index(i), shortName, strings.Join(errs, ",")))
    		}
    	}
    
    	// kind and listKind may not be the same or parsing become ambiguous
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // verbs is a list of supported kube verbs (this includes get, list, watch, create,
      // update, patch, delete, deletecollection, and proxy)
      optional Verbs verbs = 4;
    
      // shortNames is a list of suggested short names of the resource.
      repeated string shortNames = 5;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all')
      repeated string categories = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // update, patch, delete, deletecollection, and proxy)
      optional Verbs verbs = 4;
    
      // shortNames is a list of suggested short names of the resource.
      // +listType=atomic
      repeated string shortNames = 5;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all')
      // +listType=atomic
      repeated string categories = 7;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	for i := range vservices {
    		vservices[i] = virtualServices[i].DeepCopy()
    	}
    
    	totalVirtualServices.Record(float64(len(virtualServices)))
    
    	// convert all shortnames in virtual services into FQDNs
    	for _, r := range vservices {
    		resolveVirtualServiceShortnames(r.Spec.(*networking.VirtualService), r.Meta)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            val importDirectivesWithSameImportedFqName = containingFile.collectDescendantsOfType { importedDirective: KtImportDirective ->
                importedDirective.importedFqName?.shortName() == classId.shortClassName
            }
            return importDirectivesWithSameImportedFqName.isNotEmpty() &&
                    importDirectivesWithSameImportedFqName.all { it.importedFqName != classId.asSingleFqName() }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    			t.Fatalf("could not create %v", c.Name)
    		}
    	}
    
    	env.ConfigStore = configStore
    	ps.initDefaultExportMaps()
    	ps.initVirtualServices(env)
    
    	t.Run("resolve shortname", func(t *testing.T) {
    		rules := ps.VirtualServicesForGateway("ns1", gatewayName)
    		if len(rules) != 3 {
    			t.Fatalf("wanted 3 virtualservice for gateway %s, actually got %d", gatewayName, len(rules))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top