Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for announce (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         *   }
         * }
         * </pre>
         *
         * @param action a configuration action
         * @return the added repository
         * @deprecated JFrog announced JCenter's <a href="https://blog.gradle.org/jcenter-shutdown">sunset</a> in February 2021. Use {@link #mavenCentral()} instead.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/net/dial.go

    //
    // If MPTCP is not available on the host or not supported by the client,
    // the Listen method will fall back to TCP.
    func (lc *ListenConfig) SetMultipathTCP(use bool) {
    	lc.mptcpStatus.set(use)
    }
    
    // Listen announces on the local network address.
    //
    // See func Listen for a description of the network and address
    // parameters.
    func (lc *ListenConfig) Listen(ctx context.Context, network, address string) (Listener, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandler.java

        }
    
        private void deprecateJCenter(String method, String replacement) {
            DeprecationLogger.deprecateMethod(RepositoryHandler.class, method)
                .withAdvice("JFrog announced JCenter's sunset in February 2021. Use " + replacement + " instead.")
                .withProblemId("repository-jcenter")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(6, "jcenter_deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    [[feature_preview]]
    === Feature Preview API
    
    The feature preview API allows certain _incubating_ features to be activated by adding `enableFeaturePreview('FEATURE')` in your _settings_ file.
    Individual preview features will be announced in release notes.
    
    When _incubating_ features are either promoted to _public_ or removed, the feature preview flags for them become obsolete, have no effect, and should be removed from the settings file.
    
    [[sec:public]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationRepositoriesBuildOperationIntegrationTest.groovy

            'jcenter'              | jcenterRepoBlock()            | expectedJcenterRepo()            | "The RepositoryHandler.jcenter() method has been deprecated. This is scheduled to be removed in Gradle 9.0. JFrog announced JCenter's sunset in February 2021. Use mavenCentral() instead. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_6.html#jcenter_deprecation"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.14.md

    See also the [security announcement for this release](https://groups.google.com/forum/#!topic/kubernetes-security-announce/vUtEcSEY6SM).
    
    # v1.14.4
    
    [Documentation](https://docs.k8s.io)
    
    ## Downloads for v1.14.4
    
    
    filename | sha512 hash
    -------- | -----------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (2)
  7. src/main/java/jcifs/smb/SpnegoContext.java

         * 
         * @return the Oid of the mechanism being used
         */
        ASN1ObjectIdentifier[] getMechs () {
            return this.mechs;
        }
    
    
        /**
         * @return the mechanisms announced by the remote end
         */
        ASN1ObjectIdentifier[] getRemoteMechs () {
            return this.remoteMechs;
        }
    
    
        /**
         * Set what mechanism is being used for this context.
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/etcd/local.go

    		} else {
    			cluster, err = etcdClient.AddMember(nodeName, etcdPeerAddress)
    		}
    		if err != nil {
    			return err
    		}
    		fmt.Println("[etcd] Announced new etcd member joining to the existing etcd cluster")
    		klog.V(1).Infof("Updated etcd member list: %v", cluster)
    	}
    
    	fmt.Printf("[etcd] Creating static Pod manifest for %q\n", kubeadmconstants.Etcd)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.15.md

    See also the [security announcement for this release](https://groups.google.com/forum/#!topic/kubernetes-security-announce/vUtEcSEY6SM).
    
    # v1.15.1
    
    [Documentation](https://docs.k8s.io)
    
    ## Downloads for v1.15.1
    
    
    filename | sha512 hash
    -------- | -----------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

     * selection to the underlying SSL socket.
     *
     * The configuration of each spec changes with each OkHttp release. This is annoying: upgrading
     * your OkHttp library can break connectivity to certain web servers! But it’s a necessary annoyance
     * because the TLS ecosystem is dynamic and staying up to date is necessary to stay secure. See
     * [OkHttp's TLS Configuration History][tls_history] to track these changes.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top