Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 535 for relabel (0.13 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalProblemAggregation.java

    import org.gradle.tooling.internal.protocol.problem.InternalProblemCategory;
    
    @NonNullApi
    public interface InternalProblemAggregation {
    
        InternalProblemCategory getCategory();
    
        InternalLabel getLabel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:01:32 UTC 2024
    - 978 bytes
    - Viewed (0)
  2. tools/bug-report/pkg/cluster/cluster.go

    				if isIncludeOrExcludeEntriesMatched(eld.Containers, c.Name) {
    					return true
    				}
    			}
    		}
    		if len(eld.Labels) > 0 {
    			for key, val := range eld.Labels {
    				if evLabel, exists := pod.Labels[key]; exists {
    					if isExactMatchedOrPatternMatched(val, evLabel) {
    						return true
    					}
    				}
    			}
    		}
    		if len(eld.Annotations) > 0 {
    			for key, val := range eld.Annotations {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultLabel.java

    import java.io.Serializable;
    
    @NonNullApi
    public class DefaultLabel implements InternalLabel, Serializable {
    
        private final String label;
    
        public DefaultLabel(String label) {
            this.label = label;
        }
    
        @Override
        public String getLabel() {
            return label;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 14:13:55 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/problem/InternalBasicProblemDetails.java

    import java.util.List;
    
    public interface InternalBasicProblemDetails extends InternalProblemDetails {
    
        InternalProblemCategory getCategory();
    
        InternalAdditionalData getAdditionalData();
    
        InternalLabel getLabel();
    
        @Nullable
        InternalDetails getDetails();
    
        InternalSeverity getSeverity();
    
        List<InternalLocation> getLocations();
    
        @Nullable
        InternalDocumentationLink getDocumentationLink();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 07:53:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/JvmTestKind.java

        private final String label;
    
        JvmTestKind(String label) {
            this.label = label;
        }
    
        /**
         * Returns a label for the test kind. The label can be used to generate a prettified version of the test descriptor.
         *
         * @return a label corresponding to the test kind
         */
        public String getLabel() {
            return label;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/cover/cover.go

    				// a control statement, such as a labeled for.
    				if label, isLabel := stmt.(*ast.LabeledStmt); isLabel && !f.isControl(label.Stmt) {
    					newLabel := *label
    					newLabel.Stmt = &ast.EmptyStmt{
    						Semicolon: label.Stmt.Pos(),
    						Implicit:  true,
    					}
    					end = label.Pos() // Previous block ends before the label.
    					list[last] = &newLabel
    					// Open a gap and drop in the old statement, now without a label.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                let revLabel;
                if (item.series.label === executionLabel.branch) {
                    revLabel = 'rev: ' + renderCommitIds(executionLabel.commits) + '/' + executionLabel.branch;
                } else {
                    revLabel = 'Version: ' + item.series.label;
                }
                const text = revLabel + ', date: ' + executionLabel.date + ', ' + label + ': ' + item.datapoint[1] + unit;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. pkg/controller/apis/config/types.go

    	// CSRSigningController related features.
    	CSRSigningController csrsigningconfig.CSRSigningControllerConfiguration
    	// DaemonSetControllerConfiguration holds configuration for DaemonSetController
    	// related features.
    	DaemonSetController daemonconfig.DaemonSetControllerConfiguration
    	// DeploymentControllerConfiguration holds configuration for
    	// DeploymentController related features.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint-no-network-label.yaml

    John Howard <******@****.***> 1717022463 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

            Vertex(String label) {
                this.label = label;
            }
    
            String getLabel() {
                return label;
            }
    
            List<Vertex> getChildren() {
                return children;
            }
    
            List<Vertex> getParents() {
                return parents;
            }
        }
    
        static class CycleDetectedException extends RuntimeException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top