Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 101 for PROMOTED (0.15 sec)

  1. doc/go1.17_spec.html

    </pre>
    
    <p>
    A field or <a href="#Method_declarations">method</a> <code>f</code> of an
    embedded field in a struct <code>x</code> is called <i>promoted</i> if
    <code>x.f</code> is a legal <a href="#Selectors">selector</a> that denotes
    that field or method <code>f</code>.
    </p>
    
    <p>
    Promoted fields act like ordinary fields
    of a struct except that they cannot be used as field names in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    // information gained from ld.pkgs.
    //
    // In particular:
    //
    //   - Modules that provide packages directly imported from the main module are
    //     marked as direct, and are promoted to explicit roots. If a needed root
    //     cannot be promoted due to -mod=readonly or -mod=vendor, the importing
    //     package is marked with an error.
    //
    //   - If ld scanned the "all" pattern independent of build constraints, it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - link:{javadocPath}/org/gradle/api/file/FilePermissions.html[FilePermissions].
    - link:{javadocPath}/org/gradle/api/file/ConfigurableFilePermissions.html[ConfigurableFilePermissions].
    
    The new API has now been promoted to stable and the old methods have been deprecated:
    
    - link:{javadocPath}/org/gradle/api/file/CopyProcessingSpec.html#getFileMode--[CopyProcessingSpec.getFileMode]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.6.md

    ### Authentication
    * The authentication.k8s.io API group was promoted to v1([#41058](https://github.com/kubernetes/kubernetes/pull/41058), [@liggitt](https://github.com/liggitt))
    
    ### Authorization
    * The authorization.k8s.io API group was promoted to v1 ([#40709](https://github.com/kubernetes/kubernetes/pull/40709), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  5. src/net/http/request.go

    	//
    	//	Header = map[string][]string{
    	//		"Accept-Encoding": {"gzip, deflate"},
    	//		"Accept-Language": {"en-us"},
    	//		"Foo": {"Bar", "two"},
    	//	}
    	//
    	// For incoming requests, the Host header is promoted to the
    	// Request.Host field and removed from the Header map.
    	//
    	// HTTP defines that header names are case-insensitive. The
    	// request parser implements this by using CanonicalHeaderKey,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.22.md

    - Add three metrics to the job controller to monitor if a job works in healthy condition.
      `IndexedJob` has been promoted to Beta. ([#101292](https://github.com/kubernetes/kubernetes/pull/101292), [@AliceZhang2016](https://github.com/AliceZhang2016))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    - The link:{javadocPath}/org/gradle/plugin/devel/tasks/ValidatePlugins.html#getFailOnWarning--[failOnWarning] option is now enabled by default.
    - The following task validation errors now fail the build at runtime and are promoted to errors for link:{javadocPath}/org/gradle/plugin/devel/tasks/ValidatePlugins.html[ValidatePlugins]:
      * A task property is annotated with a property annotation not allowed for tasks, like `@InputArtifact`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  8. src/encoding/xml/marshal_test.go

    }
    
    type EmbedC struct {
    	FieldA1 string `xml:"FieldA>A1"`
    	FieldA2 string `xml:"FieldA>A2"`
    	FieldB  string
    	FieldC  string
    }
    
    type embedD struct {
    	fieldD string
    	FieldE string // Promoted and visible when embedD is embedded.
    }
    
    type NameCasing struct {
    	XMLName struct{} `xml:"casing"`
    	Xy      string
    	XY      string
    	XyA     string `xml:"Xy,attr"`
    	XYA     string `xml:"XY,attr"`
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    ### Auth
    
    * [GA] The RBAC API group has been promoted from v1beta1 to v1. No API changes were introduced.
    
    * [beta] Advanced auditing has been promoted from alpha to beta. The webhook and logging policy formats have changed since alpha, and may require modification.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	if len(output) > 0 && err == nil && os.Getenv("GO_BUILDER_NAME") != "" {
    		output = append(output, "C compiler warning promoted to error on Go builders\n"...)
    		err = errors.New("warning promoted to error")
    	}
    
    	return sh.reportCmd("", "", output, err)
    }
    
    // gccld runs the gcc linker to create an executable from a set of object files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top