Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for UNTAGGED (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"AllowUntaggedCloud": {
    						SchemaProps: spec.SchemaProps{
    							Description: "run with untagged cloud instances",
    							Default:     false,
    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"RouteReconciliationPeriod": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top