Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for checkSeq (0.15 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // validations is "spec.validations[0].expression"
      optional string fieldRef = 2;
    
      // The content of type checking information in a human-readable form.
      // Each line of the warning contains the type that the expression is checked
      // against, followed by the type check error from the compiler.
      optional string warning = 3;
    }
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    	work.assistQueue.q.pushBack(gp)
    
    	// Recheck for background credit now that this G is in
    	// the queue, but can still back out. This avoids a
    	// race in case background marking has flushed more
    	// credit since we checked above.
    	if gcController.bgScanCredit.Load() > 0 {
    		work.assistQueue.q = oldList
    		if oldList.tail != 0 {
    			oldList.tail.ptr().schedlink.set(nil)
    		}
    		unlock(&work.assistQueue.lock)
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. gradle/verification-metadata.xml

             <trusted-key id="1616273079FE63E31C938F10F0DF21D1D0A3C384" group="com.google.inject" name="guice" version="4.2.3"/>
             <trusted-key id="19BEAB2D799C020F17C69126B16698A4ADF4D638" group="org.checkerframework" name="checker-qual"/>
             <trusted-key id="1BD97A6A154E7810EE0BC832E2F38302C8075E3D">
                <trusting group="net.rubygrapefruit"/>
                <trusting group="org.gradle"/>
                <trusting group="org.gradle.exemplar"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    * Open an issue on the link:{gradle-issues}[Gradle issue tracker], including as much detail as you can.
    
    From version 5.1 onwards, the log directory is cleaned up automatically.
    It is checked periodically (at most every 24 hours) and log files are deleted if they haven’t been used for 7 days.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/text/template/exec_test.go

    	{"bug7a", "{{3 2}}", "", tVal, false},
    	{"bug7b", "{{$x := 1}}{{$x 2}}", "", tVal, false},
    	{"bug7c", "{{$x := 1}}{{3 | $x}}", "", tVal, false},
    	// Pipelined arg was not being type-checked.
    	{"bug8a", "{{3|oneArg}}", "", tVal, false},
    	{"bug8b", "{{4|dddArg 3}}", "", tVal, false},
    	// A bug was introduced that broke map lookups for lower-case names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    			// With maskFromType, we're always just tiling the type bitmap
    			// through to the elemsize.
    			//
    			// It's OK if maskFromType has pointers in elemsize that extend
    			// past the actual populated space; we checked above that all
    			// that space is zeroed, so just the GC will just see nil pointers.
    			differs := false
    			for i := range maskFromHeap {
    				if maskFromHeap[i] != maskFromType[i] {
    					differs = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    		if len(fields) > 0 {
    			words = append(words, fields[0])
    		}
    	}
    	return words, nil
    }
    
    // CanUseIPVSProxier checks if we can use the ipvs Proxier.
    // The ipset version and the scheduler are checked. If any virtual servers (VS)
    // already exist with the configured scheduler, we just return. Otherwise
    // we check if a dummy VS can be configured with the configured scheduler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    		// The logf below would cause preds to be heap-allocated if
    		// it were passed directly.
    		preds2 := make([]*Block, len(preds))
    		copy(preds2, preds)
    		state.logf("Merging %v into %v (changed=%d, checked=%d)\n", preds2, b, locs.lastChangedTime, locs.lastCheckedTime)
    	}
    
    	state.changedVars.clear()
    
    	markChangedVars := func(slots, merged abt.T) {
    		if !forLocationLists {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. src/go/build/build.go

    				if p.Goroot {
    					installgoroot.IncNonDefault()
    				}
    				p.PkgObj = ctxt.joinPath(p.Root, pkga)
    			}
    		}
    	}
    
    	// If it's a local import path, by the time we get here, we still haven't checked
    	// that p.Dir directory exists. This is the right time to do that check.
    	// We can't do it earlier, because we want to gather partial information for the
    	// non-nil *Package returned when an error occurs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    		memstats.other_sys.add(-int64(size))
    	}
    	return p
    }
    
    // inPersistentAlloc reports whether p points to memory allocated by
    // persistentalloc. This must be nosplit because it is called by the
    // cgo checker code, which is called by the write barrier code.
    //
    //go:nosplit
    func inPersistentAlloc(p uintptr) bool {
    	chunk := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&persistentChunks)))
    	for chunk != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top