Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for addPass (0.12 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    /** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome. */
    h1 {
    	font-size: 2em;
    	margin: 0.67em 0;
    }
    
    /** Address styling not present in IE 8/9, Safari 5, and Chrome. */
    abbr[title] {
    	border-bottom: 1px dotted;
    }
    
    /** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
    b,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    			Host:   "google.com",
    		},
    		"",
    	},
    	// host subcomponent; IPv4 address in RFC 3986
    	{
    		"http://192.168.0.1/",
    		&URL{
    			Scheme: "http",
    			Host:   "192.168.0.1",
    			Path:   "/",
    		},
    		"",
    	},
    	// host and port subcomponents; IPv4 address in RFC 3986
    	{
    		"http://192.168.0.1:8080/",
    		&URL{
    			Scheme: "http",
    			Host:   "192.168.0.1:8080",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    }
    
    func TestDNSConfigNoReload(t *testing.T) {
    	r := &Resolver{PreferGo: true, Dial: func(ctx context.Context, network, address string) (Conn, error) {
    		if address != "192.0.2.1:53" {
    			return nil, errors.New("configuration unexpectedly changed")
    		}
    		return fakeDNSServerSuccessful.DialContext(ctx, network, address)
    	}}
    
    	conf, err := newResolvConfTest()
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    	minHeapIdx atomic.Uintptr
    
    	// searchAddr* is the maximum address (in the offset address space, so we have a linear
    	// view of the address space; see mranges.go:offAddr) containing memory available to
    	// scavenge. It is a hint to the find operation to avoid O(n^2) behavior in repeated lookups.
    	//
    	// searchAddr* is always inclusive and should be the base address of the highest runtime
    	// page available for scavenging.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    			unsafePoint:    true, // FP maintenance around DUFFCOPY can be clobbered by interrupts
    		},
    
    		// large move
    		// arg0 = address of dst memory (in R17 aka arm64.REGRT2, changed as side effect)
    		// arg1 = address of src memory (in R16 aka arm64.REGRT1, changed as side effect)
    		// arg2 = address of the last element of src
    		// arg3 = mem
    		// returns mem
    		//	LDP.P	16(R16), (R25, Rtmp)
    		//	STP.P	(R25, Rtmp), 16(R17)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message TracerDatadogConfig {
      // Address in host:port format for reporting trace data to the Datadog agent.
      string address = 1;
    }
    
    // Configuration for the lightstep tracing service.
    message TracerLightStepConfig {
      // Sets the lightstep satellite pool address in host:port format for reporting trace data.
      string address = 1;
    
      // Sets the lightstep access token.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Get gateway ip string (the first address) based on pod cidr.
    # For Windows nodes the pod gateway IP address is the first address in the pod
    # CIDR for the host.
    function Get_Gateway_From_CIDR([string] $cidr) {
      $network=Get_NetworkDecimal_From_CIDR($cidr)
      $gateway=ConvertTo_DottedDecimalIP($network+1)
      return $gateway
    }
    
    # Get endpoint gateway ip string (the second address) based on pod cidr.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. src/net/netip/netip_test.go

    		str     string // output of String(). If "", use in.
    		wantErr string
    	}{
    		// Basic zero IPv4 address.
    		{
    			in: "0.0.0.0",
    			ip: MkAddr(Mk128(0, 0xffff00000000), Z4),
    		},
    		// Basic non-zero IPv4 address.
    		{
    			in: "192.168.140.255",
    			ip: MkAddr(Mk128(0, 0xffffc0a88cff), Z4),
    		},
    		// IPv4 address in windows-style "print all the digits" form.
    		{
    			in:      "010.000.015.001",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  9. common/scripts/metallb-native.yaml

        kind: BGPPeer
        listKind: BGPPeerList
        plural: bgppeers
        singular: bgppeer
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - jsonPath: .spec.peerAddress
          name: Address
          type: string
        - jsonPath: .spec.peerASN
          name: ASN
          type: string
        - jsonPath: .spec.bfdProfile
          name: BFD Profile
          type: string
        - jsonPath: .spec.ebgpMultiHop
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	// arenas is the heap arena map. It points to the metadata for
    	// the heap for every arena frame of the entire usable virtual
    	// address space.
    	//
    	// Use arenaIndex to compute indexes into this array.
    	//
    	// For regions of the address space that are not backed by the
    	// Go heap, the arena map contains nil.
    	//
    	// Modifications are protected by mheap_.lock. Reads can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top