Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for announce (0.12 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. README.md

    non-guaranteed backward compatible API for
    [other languages](https://www.tensorflow.org/api_docs).
    
    Keep up-to-date with release announcements and security updates by subscribing
    to
    [announce@tensorflow.org](https://groups.google.com/a/tensorflow.org/forum/#!forum/announce).
    See all the [mailing lists](https://www.tensorflow.org/community/forums).
    
    ## Install
    
    See the [TensorFlow install guide](https://www.tensorflow.org/install) for the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. 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)
  6. common/scripts/metallb-native.yaml

                    format: int32
                    type: integer
                  nodeSelectors:
                    description: NodeSelectors allows to limit the nodes to announce as
                      next hops for the LoadBalancer IP. When empty, all the nodes having  are
                      announced as next hops.
                    items:
                      description: A label selector is a label query over a set of resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    // This is required in case of network setups where default routes are present, but network
    // interfaces use only link-local addresses (e.g. as described in RFC5549).
    // e.g when using BGP to announce a host IP over link-local ip addresses and this ip address is attached to the lo interface.
    func ChooseBindAddressForInterface(intfName string) (net.IP, error) {
    	var nw networkInterfacer = networkInterface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  8. docs/uk/docs/index.md

    ---
    
    "_**Netflix** is pleased to announce the open-source release of our **crisis management** orchestration framework: **Dispatch**! [built with **FastAPI**]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. docs/pl/docs/index.md

    ---
    
    "_**Netflix** is pleased to announce the open-source release of our **crisis management** orchestration framework: **Dispatch**! [built with **FastAPI**]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. docs/he/docs/index.md

    ---
    
    "_**Netflix** is pleased to announce the open-source release of our **crisis management** orchestration framework: **Dispatch**! [built with **FastAPI**]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top