Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 89 for Avery (0.08 sec)

  1. tests/binary/binaries_test.go

    		if got > tt.maxMb {
    			t.Fatalf("Binary size of %dmb was greater than max allowed size %dmb", got, tt.maxMb)
    		}
    		if got < tt.minMb {
    			t.Fatalf("Binary size of %dmb was smaller than min allowed size %dmb. This is very likely a good thing, "+
    				"indicating the binary size has decreased. The test will fail to ensure you update the test thresholds to ensure "+
    				"the improvements are 'locked in'.", got, tt.minMb)
    		}
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_util.h

    // the following things:
    //
    // - Let MarkForCompilationPass not inject CPU-placed operations into clusters
    //   that will run on unknown devices (because the unknown XLA backend may not
    //   support every operation supported by CPU).
    // - Let BuildXlaOpsPass successfully infer a compilation device for a cluster
    //   that contains nodes placed on both the CPU and on unknown devices.  In this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/internal/trace/raw/textreader.go

    package raw
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"strconv"
    	"strings"
    	"unicode"
    
    	"internal/trace/event"
    	"internal/trace/version"
    )
    
    // TextReader parses a text format trace with only very basic validation
    // into an event stream.
    type TextReader struct {
    	v     version.Version
    	specs []event.Spec
    	names map[string]event.Type
    	s     *bufio.Scanner
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

                if (Character.isWhitespace(str.charAt(i))) {
                    return true;
                }
            }
            return false;
        }
    
        /**
         * Indents every line of {@code text} by {@code indent}. Empty lines
         * and lines that only contain whitespace are not indented.
         */
        public static String indent(String text, String indent) {
            logDeprecation();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/net/dnsclient.go

    //go:linkname isDomainName
    func isDomainName(s string) bool {
    	// The root domain name is valid. See golang.org/issue/45715.
    	if s == "." {
    		return true
    	}
    
    	// See RFC 1035, RFC 3696.
    	// Presentation format has dots before every label except the first, and the
    	// terminal empty label is optional here because we assume fully-qualified
    	// (absolute) input. We must therefore reserve space for the first and last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. cmd/kubeadm/app/componentconfigs/kubelet.go

    		warnDefaultComponentConfigValue(kind, "authentication.anonymous.enabled", kubeletAuthenticationAnonymousEnabled, *kc.config.Authentication.Anonymous.Enabled)
    	}
    
    	// On every client request to the kubelet API, execute a webhook (SubjectAccessReview request) to the API server
    	// and ask it whether the client is authorized to access the kubelet API
    	if kc.config.Authorization.Mode == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/runtime/traceback_system_test.go

    // same executable tells us the relative offset of their text segments.
    //
    // It would be nice if SetCrashOutput took care of this as it's fiddly
    // and likely to confuse every user at first.
    func sentinel() uint64 {
    	return uint64(reflect.ValueOf(sentinel).Pointer())
    }
    
    func writeSentinel(out io.Writer) {
    	fmt.Fprintf(out, "sentinel %x\n", sentinel())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/sha3/shake.go

    // produces minimum-length outputs that provide full-strength generic
    // security.
    type ShakeHash interface {
    	hash.Hash
    
    	// Read reads more output from the hash; reading affects the hash's
    	// state. (ShakeHash.Read is thus very different from Hash.Sum)
    	// It never returns an error, but subsequent calls to Write or Sum
    	// will panic.
    	io.Reader
    
    	// Clone returns a copy of the ShakeHash in its current state.
    	Clone() ShakeHash
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top