Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 638 for zeroing (0.15 sec)

  1. docs/en/docs/contributing.md

    During local development, there is a script that builds the site and checks for any changes, live-reloading:
    
    <div class="termy">
    
    ```console
    $ python ./scripts/docs.py live
    
    <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    <span style="color: green;">[INFO]</span> Start watching changes
    <span style="color: green;">[INFO]</span> Start detecting changes
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    		if err != nil {
    			return fmt.Errorf("invalid serving cert keypair: %v", err)
    		}
    
    		x509Cert, err := x509.ParseCertificate(cert.Certificate[0])
    		if err != nil {
    			return fmt.Errorf("invalid serving cert: %v", err)
    		}
    
    		klog.V(2).InfoS("Loaded serving cert", "certName", c.servingCert.Name(), "certDetail", GetHumanCertDetail(x509Cert))
    		if c.eventRecorder != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/csrsigningcontroller.go

    	fs.StringVar(&o.KubeletServingSignerConfiguration.KeyFile, "cluster-signing-kubelet-serving-key-file", o.KubeletServingSignerConfiguration.KeyFile, "Filename containing...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 06:47:49 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/webhook/metrics.go

    	&metrics.CounterOpts{
    		Subsystem: "webhooks",
    		Namespace: "apiserver",
    		Name:      "x509_missing_san_total",
    		Help: "Counts the number of requests to servers missing SAN extension " +
    			"in their serving certificate OR the number of connection failures " +
    			"due to the lack of x509 certificate SAN extension missing " +
    			"(either/or, based on the runtime environment)",
    		StabilityLevel: metrics.ALPHA,
    	},
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 14:39:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. src/internal/coverage/cmerge/merge.go

    // package cmerge provides a few small utility APIs for helping
    // with merging of counter data for a given function.
    
    import (
    	"fmt"
    	"internal/coverage"
    	"math"
    )
    
    type ModeMergePolicy uint8
    
    const (
    	ModeMergeStrict ModeMergePolicy = iota
    	ModeMergeRelaxed
    )
    
    // Merger provides state and methods to help manage the process of
    // merging together coverage counter data for a given function, for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 23:26:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            'return_higher_index_only': model.return_higher_index_only,
        }
        saved_model_save.save(
            model, self._input_saved_model_path, signatures=signatures
        )
    
        tags = {tag_constants.SERVING}
        original_signature_map = save_model.get_signatures_from_saved_model(
            self._input_saved_model_path,
            signature_keys=signatures.keys(),
            tags=tags,
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // Header keys used by the audit system.
    const (
    	// Header to hold the audit ID as the request is propagated through the serving hierarchy. The
    	// Audit-ID header should be set by the first server to receive the request (e.g. the federation
    	// server or kube-aggregator).
    	//
    	// Audit ID is also returned to client by http response header.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. architecture/networking/pilot.md

    Along with caching, partial computations are a critical performance optimization to ensure that we do not need to build (or send) every resource to every proxy on every change. This is discussed more in the Config Serving section.
    
    ### Config Serving
    
    Config serving is the layer that actually accepts proxy clients, connected over bidirectional gRPC streams, and serve them the required configuration.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

                    qc.RepresentativeDatasetConfig(
                        tf_record=qc.TfRecordFile(path=dataset_path)
                    )
                ]
            ),
            tf_saved_model=qc.TfSavedModelConfig(tags=[tag_constants.SERVING]),
            pipeline_config=qc.PipelineConfig(
                merge_fusion_with_dequantize=merge_fusion_with_dequantize
            ),
        )
        quantization.quantize_saved_model(
            self._input_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/wasm/asm.go

    						zeroEnd++
    					}
    					// emit segment if omitting zeroes reduces the output size
    					if zeroEnd-segmentEnd >= segmentOverhead || zeroEnd == dataLen {
    						break
    					}
    					segmentEnd = zeroEnd
    				}
    			}
    
    			segments = append(segments, &dataSegment{
    				offset: offset,
    				data:   data[:segmentEnd],
    			})
    			data = data[zeroEnd:]
    			offset += zeroEnd
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top