Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 715 for relabel (0.25 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                    problemEvent.getEventTime(),
                    parentDescriptor,
                    toProblemDefinition(basicProblemDetails.getLabel(), basicProblemDetails.getCategory(), basicProblemDetails.getSeverity(), basicProblemDetails.getDocumentationLink()),
                    toContextualLabel(basicProblemDetails.getLabel().getLabel()),
                    toProblemDetails(basicProblemDetails.getDetails()),
                    toLocations(basicProblemDetails.getLocations()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    	// an alternative strategy; at most one may be applied.
    	SuggestedFixes []SuggestedFix
    
    	// Related contains optional secondary positions and messages
    	// related to the primary diagnostic.
    	Related []RelatedInformation
    }
    
    // RelatedInformation contains information related to a diagnostic.
    // For example, a diagnostic that flags duplicated declarations of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

            }
        }
    
        static class ExecutionData {
            private String label;
            private List<List<Number>> data;
    
            private ExecutionData(String label, List<List<Number>> data) {
                this.label = label;
                this.data = data;
            }
    
            public String getLabel() {
                return label;
            }
    
            public List<List<Number>> getData() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. pilot/pkg/features/telemetry.go

    	EnableTelemetryLabel = env.Register("PILOT_ENABLE_TELEMETRY_LABEL", true,
    		"If true, pilot will add telemetry related metadata to cluster and endpoint resources, which will be consumed by telemetry filter.",
    	).Get()
    
    	EndpointTelemetryLabel = env.Register("PILOT_ENDPOINT_TELEMETRY_LABEL", true,
    		"If true, pilot will add telemetry related metadata to Endpoint resource, which will be consumed by telemetry filter.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/revisions/revision_tag_test.go

    					// given injection label
    					revTagNs := namespace.NewOrFail(t, t, namespace.Config{
    						Prefix: "revision-tag",
    					})
    					nsLabelParts := strings.Split(tc.nsLabel, "=")
    					if len(nsLabelParts) != 2 {
    						t.Fatalf("invalid namespace label %s", tc.nsLabel)
    					}
    					if err := revTagNs.SetLabel(nsLabelParts[0], nsLabelParts[1]); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. ci/devinfra/README.md

    # DevInfra CI Directory
    
    > **Warning** This folder is still under construction. It is part of an ongoing
    > effort to improve the structure of CI and build related files within the
    > TensorFlow repo. This warning will be removed when the contents of this
    > directory are stable and appropriate documentation around its usage is in
    > place.
    
    Maintainer: TensorFlow DevInfra
    
    Issue Reporting: File an issue against this repo and tag
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 732 bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate_test.go

    	}
    	baseAssertions := []assertion{
    		{empty, empty, ""},
    		{empty, revLabel, "istiod-canary"},
    		{empty, objEnabled, "istiod"},
    		{empty, objEnabledAndRev, "istiod-canary"},
    		{revLabel, empty, "istiod-canary"},
    		{revLabel, revLabel, "istiod-canary"},
    		{revLabel, objEnabled, "istiod-canary"},
    		{revLabel, objEnabledAndRev, "istiod-canary"},
    		{legacyLabel, empty, "istiod"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceOutOfBlockModificationListener.kt

         * source files being moved or removed. Thus, all caches related to source code and source files should be invalidated.
         *
         * Library modules (including library sources) do not need to be considered modified, so any caches related to library modules and their
         * contents may be kept.
         *
         * @see KotlinModificationTopics
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. pkg/api/testing/conversion.go

    			if l, exists := labelMap[label]; exists {
    				expectedLabel = l
    			}
    			if newLabel != expectedLabel {
    				t.Errorf("kind=%s label=%s: got unexpected label name (%q != %q)", kind, label, newLabel, expectedLabel)
    			}
    			if newValue != value {
    				t.Errorf("kind=%s label=%s: got unexpected new value (%q != %q)", kind, label, newValue, value)
    			}
    		}
    	}
    
    	for _, label := range badFieldLabels {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 07 07:01:25 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	}
    	if len(list) != 2 {
    		t.Errorf("unexpected list returned: %#v", list)
    	}
    	if indexUsed != "l:label" {
    		t.Errorf("Used index %q but expected %q", indexUsed, "l:label")
    	}
    
    	// list with spec.nodeName index.
    	matchValues = []storage.MatchValue{
    		{IndexName: "l:not-exist-label", Value: "whatever"},
    		{IndexName: "f:spec.nodeName", Value: "node2"},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top