Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for Reports (0.24 sec)

  1. src/net/http/h2_bundle.go

    // It reports whether the window has available capacity.
    func (f *http2inflow) take(n uint32) bool {
    	if n > uint32(f.avail) {
    		return false
    	}
    	f.avail -= int32(n)
    	return true
    }
    
    // takeInflows attempts to take n bytes from two inflows,
    // typically connection-level and stream-level flows.
    // It reports whether both windows have available capacity.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                              type: array
                            notPorts:
                              description: NotPorts is the negated version of the Ports
                                field. Since only some protocols have ports, if any ports
                                are specified it requires the Protocol match in the Rule
                                to be set to "TCP" or "UDP".
                              items:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - Kube-apiserver now reports latency metric for JWT authenticator authenticate token decisions in the `apiserver_authentication_jwt_authenticator_latency_seconds` metric, labeled by jwtIssuer hash and result. ([#123225](https://github.com/kubernetes/kubernetes/pull/123225), [@aramase](https://github.com/aramase))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-67778`](https://youtrack.jetbrains.com/issue/KT-67778) Clarify documentation for compose metricsDestination property
    - [`KT-67139`](https://youtrack.jetbrains.com/issue/KT-67139) Build reports can be overridden
    - [`KT-67138`](https://youtrack.jetbrains.com/issue/KT-67138) Json report is empty for incremental compilation
    - [`KT-67685`](https://youtrack.jetbrains.com/issue/KT-67685) KotlinBaseApiPlugin regression with Gradle's Configuration Cache in 2.0.0-RC1
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.12.md

    ### SIG Cloud Provider
    
    - The cloudstack cloud provider now reports a `Hostname` address type for nodes based on the `local-hostname` metadata key. ([#67719](https://github.com/kubernetes/kubernetes/pull/67719), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      optional string appProtocol = 4;
    }
    
    // EndpointSubset is a group of addresses with a common set of ports. The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    // 	{
    // 	  Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    // 	  Ports:     [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    // 	}
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_EndpointSubset = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      optional string appProtocol = 4;
    }
    
    // EndpointSubset is a group of addresses with a common set of ports. The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    // 	{
    // 	  Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    // 	  Ports:     [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    // 	}
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// Service implementations may use this information to adjust traffic routing.
    	// +optional
    	IPMode *LoadBalancerIPMode
    
    	// Ports is a list of records of service ports
    	// If used, every port defined in the service should have an entry in it
    	// +optional
    	Ports []PortStatus
    }
    
    // IPFamily represents the IP Family (IPv4 or IPv6). This type is used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	IPMode *LoadBalancerIPMode `json:"ipMode,omitempty" protobuf:"bytes,3,opt,name=ipMode"`
    
    	// Ports is a list of records of service ports
    	// If used, every port defined in the service should have an entry in it
    	// +listType=atomic
    	// +optional
    	Ports []PortStatus `json:"ports,omitempty" protobuf:"bytes,4,rep,name=ports"`
    }
    
    // IPFamily represents the IP Family (IPv4 or IPv6). This type is used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top