Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for GetLabel (0.13 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

            public void renderCommitLink(Html html) {
                html.a().classAttr("commit-link").href(getUrl()).text(getLabel()).end();
            }
    
            public String getUrl() {
                return String.format("https://github.com/%s/commit/%s", repo, hash);
            }
    
            public String getLabel() {
                return formatHash(hash);
            }
    
            private String formatHash(String hash) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

        }
    
        public List<String> getDependents(String id) {
            return graph.getVertex(id).getParents().stream().map(Vertex::getLabel).collect(Collectors.toList());
        }
    
        public List<String> getDependencies(String id) {
            return graph.getVertex(id).getChildren().stream().map(Vertex::getLabel).collect(Collectors.toList());
        }
    
        public static String getId(MavenProject project) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            private String value;
    
            private String[] permissions;
    
            private String virtualHost;
    
            private Locale locale;
    
            public String getLabel() {
                return label;
            }
    
            public void setLabel(final String label) {
                this.label = label;
            }
    
            public String getValue() {
                return value;
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * <p>
         * public class Button
         * extends Component
         * implements Accessible
         * and the link to the source code of the getLabel() method in the Button class would be on the word "getLabel":
         * public String getLabel()
         */
        @Input
        public boolean isLinkSource() {
            return linkSource.getValue();
        }
    
        public void setLinkSource(boolean linkSource) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. src/cmd/trace/gstate.go

    		return
    	}
    	name := lastFunc(stk)
    	gs.baseName += fmt.Sprintf(" %s", name)
    	gs.named = true
    	gs.isSystemG = trace.IsSystemGoroutine(name)
    }
    
    // setLabel adds an additional label to the goroutine's name.
    func (gs *gState[R]) setLabel(label string) {
    	gs.label = label
    }
    
    // name returns a name for the goroutine.
    func (gs *gState[R]) name() string {
    	name := gs.baseName
    	if gs.label != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    			labelString = fmt.Sprintf("%s:%v", k, v)
    		}
    		ls = append(ls, labelString)
    	}
    	sort.Strings(ls)
    	return strings.Join(ls, " ")
    }
    
    // SetLabel sets the specified key to the specified value for all samples in the
    // profile.
    func (p *Profile) SetLabel(key string, value []string) {
    	for _, sample := range p.Sample {
    		if sample.Label == nil {
    			sample.Label = map[string][]string{key: value}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. tests/integration/helm/upgrade/util.go

    		// change the old namespace that was pointing to the old prod (1-15-0) to point to the
    		// 'latest' revision by setting the `istio.io/rev=prod` label on the namespace
    		err := oldNs.SetLabel(label.IoIstioRev.Name, prodTag)
    		if err != nil {
    			t.Fatal("could not remove istio.io/rev from old namespace")
    		}
    
    		err = oldClient.Restart()
    		if err != nil {
    			t.Fatal("could not restart old client")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. operator/pkg/helmreconciler/reconciler.go

    	labels, err := h.getOwnerLabels(componentName)
    	if err != nil {
    		return err
    	}
    
    	for k, v := range labels {
    		err := util.SetLabel(obj, k, v)
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // getCRName returns the name of the CR associated with h.
    func (h *HelmReconciler) getCRName() (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		})
    	}
    
    	p, pbase, m, mbase, save, err := grabSourcesAndBases(sources, bases, o.Fetch, o.Obj, o.UI, o.HTTPTransport)
    	if err != nil {
    		return nil, err
    	}
    
    	if pbase != nil {
    		if s.DiffBase {
    			pbase.SetLabel("pprof::base", []string{"true"})
    		}
    		if s.Normalize {
    			err := p.Normalize(pbase)
    			if err != nil {
    				return nil, err
    			}
    		}
    		pbase.Scale(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top