Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for overlap (0.16 sec)

  1. cmd/bucket-replication.go

    func (c replicationConfig) Resync(ctx context.Context, oi ObjectInfo, dsc ReplicateDecision, tgtStatuses map[string]replication.StatusType) (r ResyncDecision) {
    	if c.Empty() {
    		return
    	}
    
    	// Now overlay existing object replication choices for target
    	if oi.DeleteMarker {
    		opts := replication.ObjectOpts{
    			Name:           oi.Name,
    			DeleteMarker:   oi.DeleteMarker,
    			VersionID:      oi.VersionID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    				if gerr.Err != nil || tags == nil {
    					globalReplicationStats.incProxy(bucket, getObjectTaggingAPI, true)
    					writeErrorResponse(ctx, w, toAPIError(ctx, gerr.Err), r.URL)
    					return
    				} // overlay tags from peer site.
    				ot = tags
    				w.Header()[xhttp.MinIOTaggingProxied] = []string{"true"} // indicate that the request was proxied.
    			} else {
    				writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		cacheInterval:    1 * time.Minute,
    		metricsGroupOpts: opts,
    	}
    	mg.RegisterRead(func(_ context.Context) []MetricV2 {
    		ml := []MetricV2{}
    
    		// metrics pertinent to site replication - overall roll up.
    		if globalSiteReplicationSys.isEnabled() {
    			m, err := globalSiteReplicationSys.getSiteMetrics(GlobalContext)
    			if err != nil {
    				metricsLogIf(GlobalContext, err)
    				return ml
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation_test.go

    					{
    						Expression: "true",
    					},
    				},
    			},
    		},
    		expectedError: `spec.variables[0].expression: Invalid value: "114 + '514'": compilation failed: ERROR: <input>:1:5: found no matching overload for '_+_' applied to '(int, string)`,
    	}, {
    		name: "validation referred to non-existing variable",
    		config: &admissionregistration.ValidatingAdmissionPolicy{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "config",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

        }
    
        int segmentSize = 1;
        while (segmentSize < segmentCapacity) {
          segmentSize <<= 1;
        }
    
        if (evictsBySize()) {
          // Ensure sum of segment max weights = overall max weights
          long maxSegmentWeight = maxWeight / segmentCount + 1;
          long remainder = maxWeight % segmentCount;
          for (int i = 0; i < this.segments.length; ++i) {
            if (i == remainder) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/LocalCache.java

        }
    
        int segmentSize = 1;
        while (segmentSize < segmentCapacity) {
          segmentSize <<= 1;
        }
    
        if (evictsBySize()) {
          // Ensure sum of segment max weights = overall max weights
          long maxSegmentWeight = maxWeight / segmentCount + 1;
          long remainder = maxWeight % segmentCount;
          for (int i = 0; i < this.segments.length; ++i) {
            if (i == remainder) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        ArrayRef<Operation*> callers = GetCallers(func);
        if (!llvm::hasSingleElement(callers) &&
            !llvm::all_of(callers.drop_front(), [&](Operation* caller) {
              /// TODO(aminim): this is overly conservative as some operations
              /// (like TPUPartitionedCallOp) may have extra operands that aren't
              /// propagated to the callee.
              return isa<CallOpInterface>(caller) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

          echo "Not adding docker options on ubuntu, as these are default on ubuntu. Bailing out..."
          return
       fi
    
       addockeropt "\"mtu\": 1460,"
       addockeropt "\"storage-driver\": \"overlay2\","
       echo "setting live restore"
       # Disable live-restore if the environment variable is set.
       if [[ "${DISABLE_DOCKER_LIVE_RESTORE:-false}" == "true" ]]; then
          addockeropt "\"live-restore\": false,"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// and is notified of pods by the podWorker. The probe manager is the authoritative source of the
    	// most recent probe status and is responsible for notifying the status manager, which
    	// synthesizes them into the overall pod status.
    	probeManager prober.Manager
    
    	// secretManager caches the set of secrets used by running pods on this node. The podWorkers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	// to one active request, and only transitions away once all
    	// active requests are complete. That means that ConnState
    	// cannot be used to do per-request work; ConnState only notes
    	// the overall state of the connection.
    	StateActive
    
    	// StateIdle represents a connection that has finished
    	// handling a request and is in the keep-alive state, waiting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top