Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 260 for zeroing (0.41 sec)

  1. staging/src/k8s.io/api/discovery/v1/zz_generated.deepcopy.go

    func (in *EndpointConditions) DeepCopyInto(out *EndpointConditions) {
    	*out = *in
    	if in.Ready != nil {
    		in, out := &in.Ready, &out.Ready
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Serving != nil {
    		in, out := &in.Serving, &out.Serving
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Terminating != nil {
    		in, out := &in.Terminating, &out.Terminating
    		*out = new(bool)
    		**out = **in
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/discovery/v1beta1/zz_generated.deepcopy.go

    func (in *EndpointConditions) DeepCopyInto(out *EndpointConditions) {
    	*out = *in
    	if in.Ready != nil {
    		in, out := &in.Ready, &out.Ready
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Serving != nil {
    		in, out := &in.Serving, &out.Serving
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Terminating != nil {
    		in, out := &in.Terminating, &out.Terminating
    		*out = new(bool)
    		**out = **in
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

    }
    
    // An op can be merged into cluster if it satisfies both of the following
    // conditions:
    //
    //  * Merging the op into the cluster doesn't break the acyclic nature of the
    //  *   graph. This means all of its operands don't have data dependency of the
    //  *   cluster.
    //  * Merging the op into the cluster does not reorder control dependencies.
    //
    bool CanMergeIntoCluster(
        const Cluster& c, Operation* to_merge,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. pkg/proxy/healthcheck/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package healthcheck provides tools for serving kube-proxy healthchecks.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 21:22:56 UTC 2017
    - 718 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/discovery.k8s.io.v1beta1.EndpointSlice.json

          }
        ]
      },
      "addressType": "addressTypeValue",
      "endpoints": [
        {
          "addresses": [
            "addressesValue"
          ],
          "conditions": {
            "ready": true,
            "serving": true,
            "terminating": true
          },
          "hostname": "hostnameValue",
          "targetRef": {
            "kind": "kindValue",
            "namespace": "namespaceValue",
            "name": "nameValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/attributes/ImmutableAttributesFactory.java

         * Merges the primary container into the fallback container and returns the result. Values in the primary container win.
         *
         * Attributes with same name but different type are considered the same attribute for the purpose of merging. As such
         * an attribute in the primary container will replace any attribute in the fallback container with the same name,
         * irrespective of the type of the attributes.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 27 04:00:15 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/deprecated_insecure_serving.go

    		ReadHeaderTimeout: 32 * time.Second, // just shy of requestTimeoutUpperBound
    	}
    
    	if len(s.Name) > 0 {
    		klog.Infof("Serving %s insecurely on %s", s.Name, s.Listener.Addr())
    	} else {
    		klog.Infof("Serving insecurely on %s", s.Listener.Addr())
    	}
    	_, _, err := RunServer(insecureServer, s.Listener, shutdownTimeout, stopCh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 27 15:58:45 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/discovery.k8s.io.v1.EndpointSlice.yaml

    addressType: addressTypeValue
    apiVersion: discovery.k8s.io/v1
    endpoints:
    - addresses:
      - addressesValue
      conditions:
        ready: true
        serving: true
        terminating: true
      deprecatedTopology:
        deprecatedTopologyKey: deprecatedTopologyValue
      hints:
        forZones:
        - name: nameValue
      hostname: hostnameValue
      nodeName: nodeNameValue
      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    func NewDynamicServingContentFromFiles(purpose, certFile, keyFile string) (*DynamicCertKeyPairContent, error) {
    	if len(certFile) == 0 || len(keyFile) == 0 {
    		return nil, fmt.Errorf("missing filename for serving cert")
    	}
    	name := fmt.Sprintf("%s::%s::%s", purpose, certFile, keyFile)
    
    	ret := &DynamicCertKeyPairContent{
    		name:     name,
    		certFile: certFile,
    		keyFile:  keyFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/discovery.k8s.io.v1.EndpointSlice.yaml

    addressType: addressTypeValue
    apiVersion: discovery.k8s.io/v1
    endpoints:
    - addresses:
      - addressesValue
      conditions:
        ready: true
        serving: true
        terminating: true
      deprecatedTopology:
        deprecatedTopologyKey: deprecatedTopologyValue
      hints:
        forZones:
        - name: nameValue
      hostname: hostnameValue
      nodeName: nodeNameValue
      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top