Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for Forked (1.87 sec)

  1. pkg/workloadapi/workload.pb.go

    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    // outbound traffic, as we only have L4 attributes to route based on. However,
    // they can be used for Gateways.
    // In this case, the key format will be "network/hostname".
    // These resources cannot be looked up on-demand.
    type Address struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/controller/job/job_controller.go

    		return
    	}
    	jm.orphanQueue.Add(key)
    }
    
    // worker runs a worker thread that just dequeues items, processes them, and marks them done.
    // It enforces that the syncHandler is never invoked concurrently with the same key.
    func (jm *Controller) worker(ctx context.Context) {
    	for jm.processNextWorkItem(ctx) {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// The 'usable' lock is always 'RLock'able when it is safe to use the cache.
    	// It is safe to use the cache after a successful list until a disconnection.
    	// We start with usable (write) locked. The below OnReplace function will
    	// unlock it after a successful list. The below defer will then re-lock
    	// it when this function exits (always due to disconnection), only if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

      (showing only the starting port). ([#123316](https://github.com/kubernetes/kubernetes/pull/123316), [@jcaamano](https://github.com/jcaamano)) [SIG CLI]
    - Fixed a regression where `kubelet --hostname-override` no longer worked
      correctly with an external cloud provider. ([#124516](https://github.com/kubernetes/kubernetes/pull/124516), [@danwinship](https://github.com/danwinship)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - The mount-utils mounter now provides an...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    		set++
    	}
    	if set > 1 {
    		v = appendErrorf(v, "only one of targetRefs or workloadSelector can be set")
    	}
    	return
    }
    
    // ValidateAuthorizationPolicy checks that AuthorizationPolicy is well-formed.
    var ValidateAuthorizationPolicy = RegisterValidateFunc("ValidateAuthorizationPolicy",
    	func(cfg config.Config) (Warning, error) {
    		in, ok := cfg.Spec.(*security_beta.AuthorizationPolicy)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top