Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 638 for relabel (0.21 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol.problem;
    
    public interface InternalLabel {
    
        String getLabel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 15:06:35 UTC 2023
    - 731 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/problems-api-usage/sample-ide/src/main/java/org/gradle/sample/SampleIde.java

                System.out.println("Problem:");
                System.out.println(" - category: " + toString(problem.getCategory()));
                System.out.println(" - label: " + problem.getLabel().getLabel());
                System.out.println(" - details: " + problem.getDetails().getDetails());
                System.out.println(" - severity: " + toString(problem.getSeverity()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. hack/testdata/deployment-label-change1.yaml

    Davanum Srinivas <******@****.***> 1652185809 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 353 bytes
    - Viewed (0)
  8. 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)
  9. hack/testdata/deployment-label-change2.yaml

    Davanum Srinivas <******@****.***> 1652185809 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 377 bytes
    - Viewed (0)
  10. hack/testdata/deployment-label-change3.yaml

    Davanum Srinivas <******@****.***> 1652185809 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 378 bytes
    - Viewed (0)
Back to top