Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 618 for band (0.04 sec)

  1. src/internal/trace/gc.go

    		}
    	}
    
    	// Process bands from lowest utilization bound to highest.
    	heap.Init(&bandU)
    
    	// Refine each band into a precise window and MMU until
    	// refining the next lowest band can no longer affect the MMU
    	// or windows.
    	for len(bandU) > 0 && bandU[0].utilBound < acc.bound {
    		i := bandU[0].series
    		c.series[i].bandMMU(bandU[0].i, windows[i], acc)
    		heap.Pop(&bandU)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/net/iprawsock.go

    	}
    	return n, err
    }
    
    // WriteMsgIP writes a message to addr via c, copying the payload from
    // b and the associated out-of-band data from oob. It returns the
    // number of payload and out-of-band bytes written.
    //
    // The packages golang.org/x/net/ipv4 and golang.org/x/net/ipv6 can be
    // used to manipulate IP-level socket options in oob.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    		waypoint := fetchWaypointForService(ctx, Waypoints, Namespaces, s.ObjectMeta)
    		if waypoint != nil {
    			waypointKey = waypoint.ResourceName()
    		}
    		a.networkUpdateTrigger.MarkDependant(ctx) // Mark we depend on out of band a.Network
    		return &model.ServiceInfo{
    			Service:       a.constructService(s, waypoint),
    			PortNames:     portNames,
    			LabelSelector: model.NewSelector(s.Spec.Selector),
    			Source:        kind.Service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/internal/trace/gc_test.go

    			got := mmuCurve.MMU(window)
    			if !aeq(want, got) {
    				t.Errorf("want %f, got %f mutator utilization in window %s", want, got, window)
    			}
    		}
    
    		// Test MUD with band optimization against MUD without band
    		// optimization. We don't have a simple testing implementation
    		// of MUDs (the simplest implementation is still quite
    		// complex), but this is still a pretty good test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/net/udpsock.go

    // to c's remote address if c is connected (in which case addr must be
    // nil). The payload is copied from b and the associated out-of-band
    // data is copied from oob. It returns the number of payload and
    // out-of-band bytes written.
    //
    // The packages golang.org/x/net/ipv4 and golang.org/x/net/ipv6 can be
    // used to manipulate IP-level socket options in oob.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		res[n] = pl
    		for _, port := range svc.Ports {
    			targetPort := port.TargetPort
    			// The svc.Ports represents the workloadapi.Service, which drops the port name info and just has numeric target Port.
    			// TargetPort can be 0 which indicates its a named port. Check if its a named port and replace with the real targetPort if so.
    			if named, f := svc.PortNames[int32(port.ServicePort)]; f && named.TargetPortName != "" {
    				// Pods only match on TargetPort names
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. src/net/unixsock.go

    package net
    
    import (
    	"context"
    	"os"
    	"sync"
    	"syscall"
    	"time"
    )
    
    // BUG(mikio): On JS, WASIP1 and Plan 9, methods and functions related
    // to UnixConn and UnixListener are not implemented.
    
    // BUG(mikio): On Windows, methods and functions related to UnixConn
    // and UnixListener don't work for "unixgram" and "unixpacket".
    
    // UnixAddr represents the address of a Unix domain socket end point.
    type UnixAddr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    	"expirationSeconds": "expirationSeconds is the requested duration of validity of the issued certificate. The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual duration.\n\nThe v1.22+ in-tree...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            </module>
            <!--<module name="WhitespaceAround">-->
                <!-- everything except { and } -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // spec contains the certificate request, and is immutable after creation.
      // Only the request, signerName, expirationSeconds, and usages fields can be set on creation.
      // Other fields are derived by Kubernetes and cannot be modified by users.
      optional CertificateSigningRequestSpec spec = 2;
    
      // Derived information about the request.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top