Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 355 for Undocumented (0.19 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                ".withContext(\"Property was automatically upgraded to the lazy version.\")\n" +
                ".startingWithGradle9(\"this property is replaced with a lazy version\")\n" +
                ".undocumented()\n" +
                ".nagUser();";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

                DeprecationLogger.deprecateType(ProjectDelegate::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        internal
        abstract val delegate: Project
    
        override fun getGroup(): Any =
            delegate.group
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSortedMap.java

       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * <p>This method is not type-safe, as it may be called on a map with keys that are not mutually
       * comparable.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  4. tools/docker-builder/docker.go

    }
    
    // ConstructBakeFile constructs a docker-bake.json to be passed to `docker buildx bake`.
    // This command is an extremely powerful command to build many images in parallel, but is pretty undocumented.
    // Most info can be found from the source at https://github.com/docker/buildx/blob/master/bake/bake.go.
    func ConstructBakeFile(a Args) (map[string]string, error) {
    	// Targets defines all images we are actually going to build
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/certlist.go

    		BaseName: kubeadmconstants.EtcdServerCertAndKeyBaseName,
    		CAName:   "etcd-ca",
    		config: pkiutil.CertConfig{
    			Config: certutil.Config{
    				// TODO: etcd 3.2 introduced an undocumented requirement for ClientAuth usage on the
    				// server cert: https://github.com/etcd-io/etcd/issues/9785#issuecomment-396715692
    				// Once the upstream issue is resolved, this should be returned to only allowing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

                !org.gradle.kotlin.dsl.KotlinInitScript::class.java.isAssignableFrom(this::class.java)) {
                DeprecationLogger.deprecateType(InitScriptApi::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        protected
        abstract val fileOperations: FileOperations
    
        protected
        abstract val processOperations: ProcessOperations
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. src/net/udpsock.go

    // parameters.
    func ResolveUDPAddr(network, address string) (*UDPAddr, error) {
    	switch network {
    	case "udp", "udp4", "udp6":
    	case "": // a hint wildcard for Go 1.0 undocumented behavior
    		network = "udp"
    	default:
    		return nil, UnknownNetworkError(network)
    	}
    	addrs, err := DefaultResolver.internetAddrList(context.Background(), network, address)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableTable.java

       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       */
      public static <R, C, V> ImmutableTable<R, C, V> copyOf(
          Table<? extends R, ? extends C, ? extends V> table) {
        if (table instanceof ImmutableTable) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  9. src/net/tcpsock.go

    // parameters.
    func ResolveTCPAddr(network, address string) (*TCPAddr, error) {
    	switch network {
    	case "tcp", "tcp4", "tcp6":
    	case "": // a hint wildcard for Go 1.0 undocumented behavior
    		network = "tcp"
    	default:
    		return nil, UnknownNetworkError(network)
    	}
    	addrs, err := DefaultResolver.internetAddrList(context.Background(), network, address)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

                    "\n" +
                    outputHashes)
                .willBecomeAnErrorInGradle9()
                .undocumented()
                .nagUser();
            try {
                // We move the inconsistent workspace to a "temporary" location as a way to atomically move it out of the permanent workspace.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top