Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for UNTAGGED (0.15 sec)

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

    import java.math.BigDecimal;
    
    import static org.gradle.performance.results.report.Tag.FixedTag.UNTAGGED;
    
    public interface Tag {
        String getName();
    
        String getClassAttr();
    
        String getTitle();
    
        String getUrl();
    
        default boolean isValid() {
            return this != UNTAGGED;
        }
    
        enum FixedTag implements Tag {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/IndexPageGenerator.java

    import static org.gradle.performance.results.report.Tag.FixedTag.REGRESSED;
    import static org.gradle.performance.results.report.Tag.FixedTag.UNKNOWN;
    import static org.gradle.performance.results.report.Tag.FixedTag.UNTAGGED;
    
    public class IndexPageGenerator extends AbstractTablePageGenerator {
        public IndexPageGenerator(PerformanceFlakinessDataProvider flakinessDataProvider, PerformanceExecutionDataProvider executionDataProvider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            var currentTags = $(row).attr('tag');
            if (currentTags === undefined) {
                currentTags = ''
            }
            // tag="FAILURE-THRESHOLD(4.16%),FLAKY(9.30%)"
            // tag="UNTAGGED"
            currentTags = currentTags.split(',').map(tag => tag.split('(')[0])
            if (selectedTags.some(tag => currentTags.indexOf(tag) != -1)) {
                $(row).show()
            } else {
                $(row).hide()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. build/common.sh

        kube::build::docker_delete_old_containers "${KUBE_DATA_CONTAINER_NAME_BASE}"
        kube::build::docker_delete_old_images "${KUBE_BUILD_IMAGE_REPO}" "${KUBE_BUILD_IMAGE_TAG_BASE}"
    
        V=2 kube::log::status "Cleaning all untagged docker images"
        "${DOCKER[@]}" rmi "$("${DOCKER[@]}" images -q --filter 'dangling=true')" 2> /dev/null || true
      fi
    
      if [[ -d "${LOCAL_OUTPUT_ROOT}" ]]; then
        kube::log::status "Removing _output directory"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. src/encoding/json/encode_test.go

    	XXX string `json:"S"`
    }
    
    // BugD's tagged S field should dominate BugA's.
    type BugY struct {
    	BugA
    	BugD
    }
    
    // Test that a field with a tag dominates untagged fields.
    func TestTaggedFieldDominates(t *testing.T) {
    	v := BugY{
    		BugA{"BugA"},
    		BugD{"BugD"},
    	}
    	b, err := Marshal(v)
    	if err != nil {
    		t.Fatal("Marshal error:", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    		// level selected by the usual Go rules), the following extra rules apply:
    
    		// 1) Of those fields, if any are JSON-tagged, only tagged fields are considered,
    		//    even if there are multiple untagged fields that would otherwise conflict.
    		{
    			name: "only tagged field is considered if any are tagged",
    			in: &testEncodableTagMatchesUntaggedName{
    				A:       1,
    				TaggedA: 2,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. src/encoding/json/encode.go

    // usual Go rules), the following extra rules apply:
    //
    // 1) Of those fields, if any are JSON-tagged, only tagged fields are considered,
    // even if there are multiple untagged fields that would otherwise conflict.
    //
    // 2) If there is exactly one field (tagged or not according to the first rule), that is selected.
    //
    // 3) Otherwise there are multiple fields, and all are ignored; no error occurs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/coderepo.go

    // expensive: in order to do so, r.code.DescendsFrom will need to fetch at least
    // enough of the commit history to find a path between version and its base.
    // Fortunately, many pseudo-versions — such as those for untagged repositories —
    // have trivial bases!
    func (r *codeRepo) validatePseudoVersion(ctx context.Context, info *codehost.RevInfo, version string) (err error) {
    	defer func() {
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. src/encoding/xml/xml.go

    				v, ok := d.ns[a.Name.Local]
    				d.pushNs(a.Name.Local, v, ok)
    				d.ns[a.Name.Local] = a.Value
    			}
    			if a.Name.Space == "" && a.Name.Local == xmlnsPrefix {
    				// Default space for untagged names
    				v, ok := d.ns[""]
    				d.pushNs("", v, ok)
    				d.ns[""] = a.Value
    			}
    		}
    
    		d.pushElement(t1.Name)
    		d.translate(&t1.Name, true)
    		for i := range t1.Attr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * A cluster using the AWS cloud provider will need to label existing nodes and resources with a ClusterID or the kube-controller-manager will not start.  To run without a ClusterID pass --allow-untagged-cloud=true to the kube-controller-manager on startup. ([#49215](https://github.com/kubernetes/kubernetes/pull/49215), [@rrati](https://github.com/rrati))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top