Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for pubnames (0.1 sec)

  1. schema/index.go

    				}
    
    				if name == "" {
    					subName := field.Name
    					const key = "COMPOSITE"
    					if composite, found := settings[key]; found {
    						if len(composite) == 0 || composite == key {
    							err = fmt.Errorf(
    								"The composite tag of %s.%s cannot be empty",
    								field.Schema.Name,
    								field.Name)
    							return
    						}
    						subName = composite
    					}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    Creates a POM file for the publication named _PubName_, populating the known metadata such as project name, project version, and the dependencies. The default location for the POM file is _build/publications/$pubName/pom-default.xml_.
    
    `publish__PubName__PublicationTo__RepoName__Repository` — link:{groovyDslPath}/org.gradle.api.publish.maven.tasks.PublishToMavenRepository.html[PublishToMavenRepository]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/types_test.go

    		t.Errorf("got field type %v, wanted mock_template.nested", nestedFieldType.Type)
    	}
    	subnameFieldType, found := rt.FindFieldType("CustomObject.nested", "subname")
    	if !found {
    		t.Fatal("got field not found for 'CustomObject.nested.subname', wanted found")
    	}
    	if subnameFieldType.Type.GetPrimitive() != exprpb.Type_STRING {
    		t.Errorf("got field type %v, wanted string", subnameFieldType.Type)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/go/types/resolver_test.go

    		func (T) _() {}
    		`,
    		`
    		package p
    		func _() {
    		L0:
    		L1:
    			goto L0
    			for {
    				goto L1
    			}
    			if true {
    				goto L2
    			}
    		L2:
    		}
    		`,
    	}
    
    	pkgnames := []string{
    		"fmt",
    		"math",
    	}
    
    	// parse package files
    	fset := token.NewFileSet()
    	var files []*ast.File
    	for _, src := range sources {
    		files = append(files, mustParse(fset, src))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/resolver_test.go

    		func (T) _() {}
    		`,
    		`
    		package p
    		func _() {
    		L0:
    		L1:
    			goto L0
    			for {
    				goto L1
    			}
    			if true {
    				goto L2
    			}
    		L2:
    		}
    		`,
    	}
    
    	pkgnames := []string{
    		"fmt",
    		"math",
    	}
    
    	// parse package files
    	var files []*syntax.File
    	for _, src := range sources {
    		files = append(files, mustParse(src))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/eviction.go

    		// we cannot ignored the PDB for this pod, so this is the fall through case.
    	}
    
    	var rtStatus *metav1.Status
    	var pdbName string
    	updateDeletionOptions := false
    
    	err = func() error {
    		pdbs, err := r.getPodDisruptionBudgets(ctx, pod)
    		if err != nil {
    			return err
    		}
    
    		if len(pdbs) > 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  7. istioctl/pkg/proxyconfig/proxyconfig.go

    				return err
    			}
    			if labelSelector != "" {
    				if podNames, podNamespace, err = getPodNameBySelector(ctx, kubeClient, labelSelector); err != nil {
    					return err
    				}
    			} else {
    				if podNames, podNamespace, err = getPodNames(ctx, args[0], ctx.Namespace()); err != nil {
    					return err
    				}
    			}
    			for _, pod := range podNames {
    				loggerName, err = setupEnvoyLogConfig(kubeClient, "", pod, podNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  8. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    			}
    			volumeNames = append(volumeNames, v)
    			podNames = append(podNames, p)
    			nodeNames = append(nodeNames, n)
    		}
    
    		t.Run(fmt.Sprintf("Test %d", test.testID), func(t *testing.T) {
    			if test.expectPass {
    				testConcurrentOperationsPositive(t,
    					volumeNames[0], podNames[0], nodeNames[0],
    					volumeNames[1], podNames[1], nodeNames[1],
    				)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  9. schema/schema.go

    				if _, ok := schema.FieldsByDBName[field.DBName]; !ok {
    					schema.DBNames = append(schema.DBNames, field.DBName)
    				}
    				schema.FieldsByDBName[field.DBName] = field
    				schema.FieldsByName[field.Name] = field
    				schema.FieldsByBindName[bindName] = field
    
    				if v != nil && v.PrimaryKey {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    				if !ztunnelPod {
    					return fmt.Errorf("workloads command is only supported by Ztunnel proxies: %v", podName)
    				}
    				podNames = []string{podName}
    				podNamespace = ns
    			} else {
    				var err error
    				podNames, podNamespace, err = ctx.InferPodsFromTypedResource("daemonset/ztunnel", ctx.IstioNamespace())
    				if err != nil {
    					return err
    				}
    			}
    
    			destLoggerLevels := map[string]Level{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top