Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for subname (0.13 sec)

  1. pkg/controller/job/indexed_job_utils.go

    	template.Labels[batch.JobCompletionIndexAnnotation] = strconv.Itoa(index)
    }
    
    func podGenerateNameWithIndex(jobName string, index int) string {
    	appendIndex := "-" + strconv.Itoa(index) + "-"
    	generateNamePrefix := jobName + appendIndex
    	if len(generateNamePrefix) > names.MaxGeneratedNameLength {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. src/net/net_windows_test.go

    		// and we can match at least one of those names,
    		// let's ignore the other names.
    		if dupNames, ok := dups[wantAddr]; ok && len(dupNames) > 1 {
    			for _, dupName := range dupNames {
    				if haveAddr, ok := have[dupName]; ok && haveAddr == wantAddr {
    					continue nextWant
    				}
    			}
    		}
    		t.Errorf("getmac lists %q, but it could not be found among Go interfaces %v", name, have)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                @Override
                public OptionalEntity<WebConfig> getWebConfigByName(String name) {
                    final WebConfig webConfig = new WebConfig();
                    webConfig.setId("01T");
                    webConfig.setName("__TEMPLATE__");
                    return OptionalEntity.of(webConfig);
                }
            }, WebConfigService.class.getCanonicalName());
            ComponentUtil.register(new FileConfigService() {
                @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/meta/meta.go

    	accessor, err := Accessor(obj)
    	if err != nil {
    		return "", err
    	}
    	return accessor.GetName(), nil
    }
    
    func (resourceAccessor) SetName(obj runtime.Object, name string) error {
    	accessor, err := Accessor(obj)
    	if err != nil {
    		return err
    	}
    	accessor.SetName(name)
    	return nil
    }
    
    func (resourceAccessor) GenerateName(obj runtime.Object) (string, error) {
    	accessor, err := Accessor(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 16.5K bytes
    - Viewed (0)
  5. src/debug/dwarf/entry_test.go

    }
    
    func TestIssue52045(t *testing.T) {
    	var abbrev, aranges, frame, line, pubnames, ranges, str []byte
    	info := []byte{0x7, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}
    
    	// A hand-crafted input corresponding to a minimal-size
    	// .debug_info (header only, no DIEs) and an empty abbrev table.
    	data0, _ := New(abbrev, aranges, frame, info, line, pubnames, ranges, str)
    	reader0 := data0.Reader()
    	entry0, _ := reader0.SeekPC(0x0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            pluginDescriptor.setArtifactId(extractArtifactId(c));
            pluginDescriptor.setVersion(extractVersion(c));
            pluginDescriptor.setGoalPrefix(extractGoalPrefix(c));
    
            pluginDescriptor.setName(extractName(c));
            pluginDescriptor.setDescription(extractDescription(c));
    
            pluginDescriptor.setIsolatedRealm(extractIsolatedRealm(c));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    		ix := bytes.Index(out[:], gthc)
    		if ix == -1 {
    			err = fmt.Errorf("BPX4GTH: gthc return data not found")
    			return
    		}
    		jn := out[ix+80 : ix+88] // we didn't declare Pgthc, but jobname is 8-byte at offset 80
    		E2a(jn)
    		jobname = string(bytes.TrimRight(jn, " "))
    
    	} else {
    		err = fmt.Errorf("BPX4GTH: rc=%d errno=%d reason=code=0x%x", rv, rc, rn)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    	)
    }
    func (o *cachingObject) GetName() string {
    	o.lock.RLock()
    	defer o.lock.RUnlock()
    	return o.object.GetName()
    }
    func (o *cachingObject) SetName(name string) {
    	o.conditionalSet(
    		func() bool { return o.object.GetName() == name },
    		func() { o.object.SetName(name) },
    	)
    }
    func (o *cachingObject) GetGenerateName() string {
    	o.lock.RLock()
    	defer o.lock.RUnlock()
    	return o.object.GetGenerateName()
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/BsDataConfig.java

            this.handlerScript = value;
        }
    
        public String getName() {
            checkSpecifiedProperty("name");
            return convertEmptyToNull(name);
        }
    
        public void setName(String value) {
            registerModifiedProperty("name");
            this.name = value;
        }
    
        public String[] getPermissions() {
            checkSpecifiedProperty("permissions");
            return permissions;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    Creates an Ivy descriptor file for the publication named _PubName_, populating the known metadata such as project name, project version, and the dependencies. The default location for the descriptor file is _build/publications/$pubName/ivy.xml_.
    
    `publish__PubName__PublicationTo__RepoName__Repository` — link:{groovyDslPath}/org.gradle.api.publish.ivy.tasks.PublishToIvyRepository.html[PublishToIvyRepository]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top