Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for Forked (0.12 sec)

  1. src/cmd/compile/internal/types2/api.go

    // Check type-checks a package and returns the resulting package object and
    // the first error if any. Additionally, if info != nil, Check populates each
    // of the non-nil maps in the Info struct.
    //
    // The package is marked as complete if no errors occurred, otherwise it is
    // incomplete. See Config.Error for controlling behavior in the presence of
    // errors.
    //
    // The package is specified by a list of *syntax.Files and corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. cmd/iam-object-store.go

    		if listKey == iamFormatFile {
    			continue
    		}
    
    		res[listKey] = append(res[listKey], trimmedItem)
    	}
    
    	return res, nil
    }
    
    // Assumes cache is locked by caller.
    func (iamOS *IAMObjectStore) loadAllFromObjStore(ctx context.Context, cache *iamCache) error {
    	if iamOS.objAPI == nil {
    		return errServerNotInitialized
    	}
    
    	bootstrapTraceMsg("loading all IAM items")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. cmd/bucket-replication-utils.go

    	if d.targetsMap == nil {
    		d.targetsMap = make(map[string]replicateTargetDecision)
    	}
    	d.targetsMap[t.Arn] = t
    }
    
    // PendingStatus returns a stringified representation of internal replication status with all targets marked as `PENDING`
    func (d ReplicateDecision) PendingStatus() string {
    	b := new(bytes.Buffer)
    	for _, k := range d.targetsMap {
    		if k.Replicate {
    			fmt.Fprintf(b, "%s=%s;", k.Arn, replication.Pending.String())
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    			}
    		}()
    		s.httpsAddr = httpsListener.Addr().String()
    	}
    
    	s.waitForShutdown(stop)
    
    	return nil
    }
    
    // WaitUntilCompletion waits for everything marked as a "required termination" to complete.
    // This should be called before exiting.
    func (s *Server) WaitUntilCompletion() {
    	s.server.Wait()
    }
    
    // initSDSServer starts the SDS server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta.go

    		}
    	}
    
    	// Envoy can send two DiscoveryRequests with same version and nonce
    	// when it detects a new resource. We should respond if they change.
    	if !subChanged {
    		// We should always respond "alwaysRespond" marked requests to let Envoy finish warming
    		// even though Nonce match and it looks like an ACK.
    		if alwaysRespond {
    			deltaLog.Infof("ADS:%s: FORCE RESPONSE %s for warming.", stype, con.ID())
    			return true
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass to merge IslandOps from TFExecutor dialect.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateTFExecutorIslandCoarseningPass();
    
    // Creates a pass to merge IslandOps for operation marked for execution on TPU.
    // This is a V1 backward compatibility.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFExecutorTPUV1IslandCoarseningPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    			// has expired accidentally.
    			<-w.clock.After(blockTimeout)
    			w.cond.Broadcast()
    		}()
    	}
    
    	w.RLock()
    	span := tracing.SpanFromContext(ctx)
    	span.AddEvent("watchCache locked acquired")
    	for w.resourceVersion < resourceVersion {
    		if w.clock.Since(startTime) >= blockTimeout {
    			// Request that the client retry after 'resourceVersionTooHighRetrySeconds' seconds.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster.go

    				// Default is UNKNOWN, HEALTHY, DEGRADED. Without this change, Envoy will drop endpoints with any other
    				// status received in EDS. With this setting, the DRAINING and UNHEALTHY endpoints are kept - both marked
    				// as UNHEALTHY ('coarse state'), which is what will show in config dumps.
    				// DRAINING/UNHEALTHY will not be used normally for new requests. They will be used if cookie/header
    				// selects them.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. cmd/encryption-v1.go

    		}
    
    		d.partDecRelOffset += int64(n1)
    	}
    	return len(p), nil
    }
    
    // DecryptedSize returns the size of the object after decryption in bytes.
    // It returns an error if the object is not encrypted or marked as encrypted
    // but has an invalid size.
    func (o ObjectInfo) DecryptedSize() (int64, error) {
    	if _, ok := crypto.IsEncrypted(o.UserDefined); !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. cmd/object-api-utils.go

    		cancel()
    		if err != nil {
    			retry++
    			continue
    		}
    		conn.Close()
    		break
    	}
    
    	return host
    }
    
    // IsCompressed returns true if the object is marked as compressed.
    func (o *ObjectInfo) IsCompressed() bool {
    	_, ok := o.UserDefined[ReservedMetadataPrefix+"compression"]
    	return ok
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top