Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 277 for logic (0.07 sec)

  1. src/internal/trace/internal/oldtrace/parser.go

    	// timestamp is the second argument, not the first; adding 1 happens to come
    	// up with the correct number, but it doesn't matter, because EvBatch has
    	// custom logic for parsing.
    	//
    	// Note that because we're adding 1, inlineArgs == 3 describes the largest
    	// number of logical arguments that isn't length-prefixed, even though the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	// To help developers avoid trybot-only failures, we try to run on typical developer machines
    	// which is darwin,linux,windows/amd64 and darwin/arm64.
    	//
    	// The same logic applies to the release notes that correspond to each api/next file.
    	if goos == "darwin" || ((goos == "linux" || goos == "windows") && goarch == "amd64") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	needBuild uint32 = 1 << iota
    	needCgoHdr
    	needVet
    	needCompiledGoFiles
    	needCovMetaFile
    	needStale
    )
    
    // build is the action for building a single package.
    // Note that any new influence on this logic must be reported in b.buildActionID above as well.
    func (b *Builder) build(ctx context.Context, a *Action) (err error) {
    	p := a.Package
    	sh := b.Shell(a)
    
    	bit := func(x uint32, b bool) uint32 {
    		if b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - Fixed a regression since `1.24` in the scheduling framework when overriding MultiPoint plugins (e.g. default plugins). The incorrect loop logic might have led to a plugin being loaded multiple times, consequently preventing any Pod from being scheduled, which was unexpected.
       ([#122068](https://github.com/kubernetes/kubernetes/pull/122068), [@caohe](https://github.com/caohe))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    	nfAcctCounters map[string]bool
    }
    
    // Proxier implements proxy.Provider
    var _ proxy.Provider = &Proxier{}
    
    // NewProxier returns a new Proxier given an iptables Interface instance.
    // Because of the iptables logic, it is assumed that there is only a single Proxier active on a machine.
    // An error will be returned if iptables fails to update or acquire the initial lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //     metadata:
      //       labels:
      //         hello: world
    
      // defaultTemplates: ["sidecar", "hello"]
      repeated string defaultTemplates = 24;
    
      // If enabled, the legacy webhook selection logic will be used. This relies on filtering of webhook
      // requests in Istiod, rather than at the webhook selection level.
      // This is option is intended for migration purposes only and will be removed in Istio 1.10.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    			if pred.ID == baseID {
    				continue
    			}
    			state.logf("Merging in state from %v:\n%v", pred, state.blockEndStateString(blockLocs[pred.ID]))
    		}
    	}
    
    	state.currentState.reset(abt.T{})
    	// The normal logic of "reset" is included in the intersection loop below.
    
    	slotLocs := state.currentState.slots
    
    	// If this is the first call, do updates on the "baseState"; if this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    // should self-preempt. It assumes it is called from the fractional
    // worker.
    func pollFractionalWorkerExit() bool {
    	// This should be kept in sync with the fractional worker
    	// scheduler logic in findRunnableGCWorker.
    	now := nanotime()
    	delta := now - gcController.markStartTime
    	if delta <= 0 {
    		return true
    	}
    	p := getg().m.p.ptr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. fastapi/applications.py

                    from fastapi import FastAPI
    
                    tags_metadata = [
                        {
                            "name": "users",
                            "description": "Operations with users. The **login** logic is also here.",
                        },
                        {
                            "name": "items",
                            "description": "Manage items. So _fancy_ they have their own docs.",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

    # limitations under the License.
    
    # This script is for configuring kubernetes master and node instances. It is
    # uploaded in the manifests tar ball.
    
    # TODO: this script duplicates templating logic from cluster/saltbase/salt
    # using sed. It should use an actual template parser on the manifest
    # files.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    ### Hardcoded constants
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top