Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 260 for zeroing (0.25 sec)

  1. src/runtime/mkduff.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // runtime·duffzero is a Duff's device for zeroing memory.
    // The compiler jumps to computed addresses within
    // the routine to zero chunks of memory.
    // Do not change duffzero without also
    // changing the uses in cmd/compile/internal/*/*.go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:21 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/sync/poolqueue.go

    			break
    		}
    	}
    
    	// We now own slot.
    	val := *(*any)(unsafe.Pointer(slot))
    	if val == dequeueNil(nil) {
    		val = nil
    	}
    
    	// Tell pushHead that we're done with this slot. Zeroing the
    	// slot is also important so we don't leave behind references
    	// that could keep this object live longer than necessary.
    	//
    	// We write to val first and then publish that we're done with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. releasenotes/notes/openmetrics-merging.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
    - 33474
    releaseNotes:
    - |
      **Fixed** Prometheus [metrics merging](/docs/ops/integrations/prometheus/#option-1-metrics-merging) to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 14 16:53:19 UTC 2021
    - 335 bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/serving.go

    Antonio Ojea <******@****.***> 1629414974 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. releasenotes/notes/nds-merging.yaml

    dwq <******@****.***> 1676385642 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 14 14:40:42 UTC 2023
    - 247 bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/benchmarks/knative-gateway.yaml

          gateways:
          - knative-serving/knative-local-gateway
          headers:
            K-Network-Hash:
              exact: override
        route:
        - destination:
            host: hello-{{$i}}.default.svc.cluster.local
            port:
              number: 80
          headers:
            request:
              set:
                Knative-Serving-Namespace: default
                Knative-Serving-Revision: hello-{{$i}}
          weight: 100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 19 16:50:51 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/signature_constants.h

    #ifndef TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
    #define TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
    
    namespace tensorflow {
    
    /// Key in the signature def map for `default` serving signatures. The default
    /// signature is used in inference requests where a specific signature was not
    /// specified.
    static constexpr char kDefaultServingSignatureDefKey[] = "serving_default";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  8. releasenotes/notes/prom-rewrite.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 21366
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 208 bytes
    - Viewed (0)
  9. pkg/proxy/endpoint.go

    }
    
    func newBaseEndpointInfo(ip string, port int, isLocal, ready, serving, terminating bool, zoneHints sets.Set[string]) *BaseEndpointInfo {
    	return &BaseEndpointInfo{
    		ip:          ip,
    		port:        port,
    		endpoint:    net.JoinHostPort(ip, strconv.Itoa(port)),
    		isLocal:     isLocal,
    		ready:       ready,
    		serving:     serving,
    		terminating: terminating,
    		zoneHints:   zoneHints,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:38:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. releasenotes/notes/agent-metrics.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 22825
    releaseNotes:
    - |
      **Added** Prometheus metrics to istio-agent.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 300 bytes
    - Viewed (0)
Back to top