Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 466 for Avery (0.4 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    // System preset priority level names
    const (
    	PriorityLevelConfigurationNameExempt   = "exempt"
    	PriorityLevelConfigurationNameCatchAll = "catch-all"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. src/runtime/extern.go

    	scheddetail: setting schedtrace=X and scheddetail=1 causes the scheduler to emit
    	detailed multiline info every X milliseconds, describing state of the scheduler,
    	processors, threads and goroutines.
    
    	schedtrace: setting schedtrace=X causes the scheduler to emit a single line to standard
    	error every X milliseconds, summarizing the scheduler state.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        // Include cross version tests, these take care of selecting a very small set of versions to cover when run as part of this stage, including the current version
        quick(true, true, true, 120, 4),
    
        // Include cross version tests, these take care of selecting a very small set of versions to cover when run as part of this stage, including the current version
        platform(true, true, true),
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/UnsignedBytes.java

       * Returns the least value present in {@code array}, treating values as unsigned.
       *
       * @param array a <i>nonempty</i> array of {@code byte} values
       * @return the value present in {@code array} that is less than or equal to every other value in
       *     the array according to {@link #compare}
       * @throws IllegalArgumentException if {@code array} is empty
       */
      public static byte min(byte... array) {
        checkArgument(array.length > 0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. pkg/kube/krt/filter.go

    	return func(h *dependency) {
    		h.filter.generic = f
    	}
    }
    
    func (f *filter) Matches(object any, forList bool) bool {
    	// Check each of our defined filters to see if the object matches
    	// This function is called very often and is important to keep fast
    	// Cheaper checks should come earlier to avoid additional work and short circuit early
    
    	// If we are listing, we already did this. Do not redundantly check.
    	if !forList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. cni/pkg/log/uds.go

    		case "error":
    			logger.LogWithTime(istiolog.ErrorLevel, m.Msg, m.Time)
    		}
    	}
    }
    
    // parseCniLog is tricky because we have known and arbitrary fields in the log, and Go doesn't make that very easy
    func parseCniLog(l string) (cniLog, bool) {
    	var raw map[string]json.RawMessage
    	if err := json.Unmarshal([]byte(l), &raw); err != nil {
    		log.Debugf("Failed to unmarshal CNI plugin log entry: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/runtime/runtime_test.go

    // of the larger addresses must themselves be invalid addresses.
    // We might get unlucky and the OS might have mapped one of these
    // addresses, but probably not: they're all in the first page, very high
    // addresses that normally an OS would reserve for itself, or malformed
    // addresses. Even so, we might have to remove one or two on different
    // systems. We will see.
    
    var faultAddrs = []uint64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	profInsertLock mutex
    	// profBlockLock protects the contents of every blockRecord struct
    	profBlockLock mutex
    	// profMemActiveLock protects the active field of every memRecord struct
    	profMemActiveLock mutex
    	// profMemFutureLock is a set of locks that protect the respective elements
    	// of the future array of every memRecord struct
    	profMemFutureLock [len(memRecord{}.future)]mutex
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. cmd/storage-rest-server.go

    		c.done = nil
    	}
    	return c.rc.Close()
    }
    
    // keepHTTPReqResponseAlive can be used to avoid timeouts with long storage
    // operations, such as bitrot verification or data usage scanning.
    // Every 10 seconds a space character is sent.
    // keepHTTPReqResponseAlive will wait for the returned body to be read before starting the ticker.
    // The returned function should always be called to release resources.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. src/cmd/link/link_test.go

    	return a[i&7]
    }
    `
    
    func TestIssue34788Android386TLSSequence(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This is a cross-compilation test, so it doesn't make
    	// sense to run it on every GOOS/GOARCH combination. Limit
    	// the test to amd64 + darwin/linux.
    	if runtime.GOARCH != "amd64" ||
    		(runtime.GOOS != "darwin" && runtime.GOOS != "linux") {
    		t.Skip("skipping on non-{linux,darwin}/amd64 platform")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top