Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for wastage (0.49 sec)

  1. src/runtime/malloc.go

    			// Current setting is 16 bytes, which relates to 2x worst case memory
    			// wastage (when all but one subobjects are unreachable).
    			// 8 bytes would result in no wastage at all, but provides less
    			// opportunities for combining.
    			// 32 bytes provides more opportunities for combining,
    			// but can lead to 4x worst case wastage.
    			// The best case winning is 8x regardless of block size.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

                                             .WithAttr("value", Tensor()));
        Node* unstage = ops::SourceOp(
            "Unstage",
            builder.opts().WithName("unstage").WithAttr("dtypes", {DT_FLOAT}));
    
        Node* add0 = ops::BinaryOp("Add", a, b, builder.opts().WithName("add0"));
        Node* add1 =
            ops::BinaryOp("Add", unstage, b, builder.opts().WithName("add1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    	dAtA[i] = 0x2a
    	i -= len(m.RequestURI)
    	copy(dAtA[i:], m.RequestURI)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.RequestURI)))
    	i--
    	dAtA[i] = 0x22
    	i -= len(m.Stage)
    	copy(dAtA[i:], m.Stage)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Stage)))
    	i--
    	dAtA[i] = 0x1a
    	i -= len(m.AuditID)
    	copy(dAtA[i:], m.AuditID)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.AuditID)))
    	i--
    	dAtA[i] = 0x12
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  4. docs/ru/docs/deployment/docker.md

    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    	globalBatchJobsMetrics.save(job.ID, ri)
    
    	delay := job.Replicate.Flags.Retry.Delay
    	if delay == 0 {
    		delay = batchReplJobDefaultRetryDelay
    	}
    	rnd := rand.New(rand.NewSource(time.Now().UnixNano()))
    
    	hasTags := len(r.Flags.Filter.Tags) != 0
    	isMetadata := len(r.Flags.Filter.Metadata) != 0
    	isStorageClassOnly := len(r.Flags.Filter.Metadata) == 1 && strings.EqualFold(r.Flags.Filter.Metadata[0].Key, xhttp.AmzStorageClass)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	if uss.evalExecutingMetrics && len(uss.expectedConcurrencyInUse) > 0 {
    		e := `
    				# HELP apiserver_flowcontrol_request_concurrency_in_use [ALPHA] Concurrency (number of seats) occupied by the currently executing (initial stage for a WATCH, any stage otherwise) requests in the API Priority and Fairness subsystem
    				# TYPE apiserver_flowcontrol_request_concurrency_in_use gauge
    ` + uss.expectedConcurrencyInUse
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/proxier.go

    			if len(nodePortEndpoints) > 0 && endpointsAvailableForLB {
    				// If all endpoints are in terminating stage, then no need to create Node Port LoadBalancer
    				hnsLoadBalancer, err := hns.getLoadBalancer(
    					nodePortEndpoints,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	// It is split into two stages - head[headPos:] and tail.
    	// popFront is trivial (headPos++) on the first stage, and
    	// pushBack is trivial (append) on the second stage.
    	// If the first stage is empty, popFront can swap the
    	// first and second stages to remedy the situation.
    	//
    	// This two-stage split is analogous to the use of two lists
    	// in Okasaki's purely functional queue but without the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Such a failure indicates that a **dependency may have been compromised**.
    At this stage, you **must** perform manual verification and check what happens.
    Several things can happen:
    
    * a dependency was tampered in the local dependency cache of Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. pilot/pkg/security/authn/policy_applier_test.go

    						CreationTimestamp: now.Add(time.Second * -1),
    					},
    					Spec: &v1beta1.PeerAuthentication{
    						Selector: &type_beta.WorkloadSelector{
    							MatchLabels: map[string]string{
    								"stage": "prod",
    							},
    						},
    						Mtls: &v1beta1.PeerAuthentication_MutualTLS{
    							Mode: v1beta1.PeerAuthentication_MutualTLS_STRICT,
    						},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
Back to top