Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 86 for portnet (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. docs/en/data/github_sponsors.yml

    sponsors:
    - - login: bump-sh
        avatarUrl: https://avatars.githubusercontent.com/u/33217836?v=4
        url: https://github.com/bump-sh
      - login: porter-dev
        avatarUrl: https://avatars.githubusercontent.com/u/62078005?v=4
        url: https://github.com/porter-dev
      - login: andrew-propelauth
        avatarUrl: https://avatars.githubusercontent.com/u/89474256?u=1188c27cb744bbec36447a2cfd4453126b2ddb5c&v=4
        url: https://github.com/andrew-propelauth
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    // target configurations on both CPU and GPU (Intel MKL, ROCm, etc.). This MLIR
    // pass covers (some of) the general CPU case and at the moment does not account
    // for any target-specific configurations.
    
    // This pass is being ported over from the Grappler Remapper pass based on
    // need/usage. File a bug to request porting over additional fusions.
    
    // TODO(b/158265178): Support GPU-specific fusions.
    // TODO(b/158266710): Support CPU MKL configurations.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. cluster/gce/windows/common.psm1

        Add-Type -AssemblyName System.Net.Http
      }
    
      $timeout = New-TimeSpan -Minutes 5
    
      try {
        # Use HttpClient in favor of WebClient.
        # https://docs.microsoft.com/en-us/dotnet/api/system.net.webclient?view=net-5.0#remarks
        $httpClient = New-Object -TypeName System.Net.Http.HttpClient
        $httpClient.Timeout = $timeout
        foreach ($key in $Headers.Keys) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.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: Sun Oct 02 08:41:25 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    			continue
    		}
    		portNum, err := strconv.Atoi(port)
    		if err != nil {
    			proxier.logger.Error(err, "Failed to parse endpoint port", "port", port)
    			continue
    		}
    
    		newDest := &utilipvs.RealServer{
    			Address: netutils.ParseIPSloppy(ip),
    			Port:    uint16(portNum),
    			Weight:  1,
    		}
    
    		if curEndpoints.Has(ep) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    			scope.err(err, w, req)
    			return
    		}
    		if admit != nil && admit.Handles(admission.Connect) {
    			userInfo, _ := request.UserFrom(ctx)
    			// TODO: remove the mutating admission here as soon as we have ported all plugin that handle CONNECT
    			if mutatingAdmission, ok := admit.(admission.MutationInterface); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. pilot/pkg/model/network.go

    	// - the internal map of label gateways - these get deleted if the service is deleted, updated if the ip changes etc.
    	// - the computed map from meshNetworks (triggered by reloadNetworkLookup, the ported logic from getGatewayAddresses)
    	gatewaySet.InsertAll(mgr.env.NetworkGateways()...)
    	resolvedGatewaySet := mgr.resolveHostnameGateways(gatewaySet)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top