Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for portnet (0.14 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build gc && !purego
    
    #include "textflag.h"
    
    // This was ported from the amd64 implementation.
    
    #define POLY1305_ADD(msg, h0, h1, h2, t0, t1, t2) \
    	MOVD (msg), t0;  \
    	MOVD 8(msg), t1; \
    	MOVD $1, t2;     \
    	ADDC t0, h0, h0; \
    	ADDE t1, h1, h1; \
    	ADDE t2, h2;     \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. OWNERS_ALIASES

        - kow3ns
        - janetkuo
        - soltysh
        - smarterclayton
        - atiratree
      sig-apps-reviewers:
        - alculquicondor
        - atiratree
        - janetkuo
        - kow3ns
        - krmayankk
        - mortent
        - smarterclayton
        - soltysh
      # sig-apps-emeritus:
      # - tnozicka
    
      sig-autoscaling-maintainers:
        - bskiba
        - MaciekPytel
        - mwielgus
      sig-instrumentation-approvers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

          <organization>ASF</organization>
          <roles>
            <role>PMC Chair</role>
          </roles>
          <timezone>-5</timezone>
        </developer>
        <developer>
          <id>brett</id>
          <name>Brett Porter</name>
          <email>******@****.***</email>
          <organization>ASF</organization>
          <roles>
            <role>PMC Member</role>
          </roles>
          <timezone>+10</timezone>
        </developer>
        <developer>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

     *
     * This class contains a Kotlin implementation of the pseudocode specified by RFC 3492. It includes
     * direct translation of the pseudocode presented there.
     *
     * Partner this class with [UTS #46] to implement IDNA2008 [RFC 5890] like most browsers do.
     *
     * [RFC 3492]: https://datatracker.ietf.org/doc/html/rfc3492
     * [RFC 5890]: https://datatracker.ietf.org/doc/html/rfc5890
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

    different licenses (MIT and Apache):
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
        writerc.go yamlh.go yamlprivateh.go
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. pkg/proxy/endpointslicecache_test.go

    		AddressType: discovery.AddressTypeIPv4,
    		Endpoints:   []discovery.Endpoint{},
    	}
    
    	for i, portNum := range portNums {
    		endpointSlice.Ports = append(endpointSlice.Ports, discovery.EndpointPort{
    			Name:     ptr.To(fmt.Sprintf("port-%d", i)),
    			Port:     portNum,
    			Protocol: ptr.To(v1.ProtocolTCP),
    		})
    	}
    
    	for i := 1; i <= numEndpoints; i++ {
    		readyCondition := i%unreadyMod != 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		refs = make([]*corev1.ObjectReference, len(ips))
    	}
    	var portNum int32 = 1001
    	eas := make([]corev1.EndpointAddress, 0)
    	for i, ip := range ips {
    		eas = append(eas, corev1.EndpointAddress{IP: ip, TargetRef: refs[i]})
    	}
    
    	eps := make([]corev1.EndpointPort, 0)
    	for _, name := range portNames {
    		eps = append(eps, corev1.EndpointPort{Name: name, Port: portNum})
    	}
    
    	endpoint := &corev1.Endpoints{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. src/internal/filepathlite/path_windows.go

    		return false
    	}
    	return IsPathSeparator(path[0])
    }
    
    // volumeNameLen returns length of the leading volume name on Windows.
    // It returns 0 elsewhere.
    //
    // See:
    // https://learn.microsoft.com/en-us/dotnet/standard/io/file-path-formats
    // https://googleprojectzero.blogspot.com/2016/02/the-definitive-guide-on-win32-to-nt.html
    func volumeNameLen(path string) int {
    	switch {
    	case len(path) >= 2 && path[1] == ':':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. licenses/sigs.k8s.io/yaml/LICENSE

    different licenses (MIT and Apache):
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
        writerc.go yamlh.go yamlprivateh.go
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    		fCookie.fobj.Ctim.Sec = s.Ctim.Sec
    		fCookie.fobj.Ctim.Nsec = s.Ctim.Nsec
    	}
    	return fCookie, nil
    }
    
    // GetOne wraps port_get(3c) and returns a single PortEvent.
    func (e *EventPort) GetOne(t *Timespec) (*PortEvent, error) {
    	pe := new(portEvent)
    	_, err := port_get(e.port, pe, t)
    	if err != nil {
    		return nil, err
    	}
    	p := new(PortEvent)
    	e.mu.Lock()
    	defer e.mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
Back to top