Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for announce (0.14 sec)

  1. platforms/documentation/docs/src/docs/release/notes-template.md

    The Gradle team is excited to announce Gradle @version@.
    
    This release features [1](), [2](), ... [n](), and more.
    
    <!-- 
    Include only their name, impactful features should be called out separately below.
     [Some person](https://github.com/some-person)
    
     THIS LIST SHOULD BE ALPHABETIZED BY [PERSON NAME] - the docs:updateContributorsInReleaseNotes task will enforce this ordering, which is case-insensitive.
    -->
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/net/ipsock_plan9.go

    	defer func() { fixErr(err) }()
    	f, dest, proto, name, err := startPlan9(ctx, net, laddr)
    	if err != nil {
    		return nil, err
    	}
    	_, err = f.WriteString("announce " + dest)
    	if err != nil {
    		f.Close()
    		return nil, &OpError{Op: "announce", Net: net, Source: laddr, Addr: nil, Err: err}
    	}
    	laddr, err = readPlan9Addr(net, netdir+"/"+proto+"/"+name+"/local")
    	if err != nil {
    		f.Close()
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. src/sync/rwmutex.go

    // Lock blocks until the lock is available.
    func (rw *RWMutex) Lock() {
    	if race.Enabled {
    		_ = rw.w.state
    		race.Disable()
    	}
    	// First, resolve competition with other writers.
    	rw.w.Lock()
    	// Announce to readers there is a pending writer.
    	r := rw.readerCount.Add(-rwmutexMaxReaders) + rwmutexMaxReaders
    	// Wait for active readers.
    	if r != 0 && rw.readerWait.Add(r) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/net/udpsock_plan9.go

    	}
    	fd, err := l.netFD()
    	return newUDPConn(fd), err
    }
    
    func (sl *sysListener) listenMulticastUDP(ctx context.Context, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) {
    	// Plan 9 does not like announce command with a multicast address,
    	// so do not specify an IP address when listening.
    	l, err := listenPlan9(ctx, sl.network, &UDPAddr{IP: nil, Port: gaddr.Port, Zone: gaddr.Zone})
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 02 18:35:35 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	}
    
    	// Adds a new etcd instance; in order to do this the new etcd instance should be "announced" to
    	// the existing etcd members before being created.
    	// This operation must be executed after kubelet is already started in order to minimize the time
    	// between the new etcd member is announced and the start of the static pod running the new etcd member, because during
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedRepositoryIntegrationTest.groovy

                }
            """
    
            when:
            executer.expectDocumentedDeprecationWarning "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 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. doc/next/7-ports.md

    ## Ports {#ports}
    
    ### Darwin {#darwin}
    
    <!-- go.dev/issue/64207 -->
    As [announced](go1.22#darwin) in the Go 1.22 release notes,
    Go 1.23 requires macOS 11 Big Sur or later;
    support for previous versions has been discontinued.
    
    ### Linux {#linux}
    
    <!-- go.dev/issue/67001 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. docs/fr/docs/help-fastapi.md

        * Dites-moi comment vous utilisez FastAPI (j'adore entendre ça).
        * Entendre quand je fais des annonces ou que je lance de nouveaux outils.
    * <a href="https://www.linkedin.com/in/tiangolo/" class="external-link" target="_blank">Vous connectez à moi sur **LinkedIn**</a>.
        * Etre notifié quand je fais des annonces ou que je lance de nouveaux outils (bien que j'utilise plus souvent Twitter 🤷‍♂).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 08:39:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. 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)
Back to top