Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for neon (0.07 sec)

  1. src/time/format.go

    		case stdZeroYearDay:
    			b = appendInt(b, yday, 3)
    		case stdHour:
    			b = appendInt(b, hour, 2)
    		case stdHour12:
    			// Noon is 12PM, midnight is 12AM.
    			hr := hour % 12
    			if hr == 0 {
    				hr = 12
    			}
    			b = appendInt(b, hr, 0)
    		case stdZeroHour12:
    			// Noon is 12PM, midnight is 12AM.
    			hr := hour % 12
    			if hr == 0 {
    				hr = 12
    			}
    			b = appendInt(b, hr, 2)
    		case stdMinute:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	}
    	tt := (*abi.FuncType)(unsafe.Pointer(t))
    	return tt.NumIn()
    }
    
    func (t *rtype) NumOut() int {
    	if t.Kind() != Func {
    		panic("reflect: NumOut of non-func type " + t.String())
    	}
    	tt := (*abi.FuncType)(unsafe.Pointer(t))
    	return tt.NumOut()
    }
    
    func (t *rtype) Out(i int) Type {
    	if t.Kind() != Func {
    		panic("reflect: Out of non-func type " + t.String())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/go/build/build.go

    		if len(line) == 0 && !ended { // Blank line
    			// Remember position of most recent blank line.
    			// When we find the first non-blank, non-// line,
    			// this "end" position marks the latest file position
    			// where a //go:build line can appear.
    			// (It must appear _before_ a blank line before the non-blank, non-// line.
    			// Yes, that's confusing, which is part of why we moved to //go:build lines.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

     *  The challenge's scheme and realm are now non-null. If you are calling
        `new Challenge(scheme, realm)` you must provide non-null values. These were
        never null in challenges created by OkHttp, but could have been null in
        application code that creates challenges.
    
     *  New: The `TlsVersion` of a `Handshake` is now non-null. If you are calling
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    type goTest struct {
    	timeout  time.Duration // If non-zero, override timeout
    	short    bool          // If true, force -short
    	tags     []string      // Build tags
    	race     bool          // Force -race
    	bench    bool          // Run benchmarks (briefly), not tests.
    	runTests string        // Regexp of tests to run
    	cpu      string        // If non-empty, -cpu flag
    
    	gcflags   string // If non-empty, build with -gcflags=all=X
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    	}
    	if s == 0 {
    		panic("invalid sub-symbol in SetCarrierSym")
    	}
    	// Carrier symbols are not expected to have content/data. It is
    	// ok for them to have non-zero size (to allow for use of generator
    	// symbols).
    	if len(l.Data(c)) != 0 {
    		panic("unexpected non-empty carrier symbol")
    	}
    	l.outer[s] = c
    	// relocsym's foldSubSymbolOffset requires that we only
    	// have a single level of containment-- enforce here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        throw new UnsupportedOperationException();
      }
    
      /**
       * Not supported. <b>You are attempting to create a map that may contain a non-{@code Comparable}
       * key.</b> Proper calls will resolve to the version in {@code ImmutableSortedMap}, not this dummy
       * version.
       *
       * @throws UnsupportedOperationException always
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Preconditions.java

       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
       * decade that assumes that they can use checkNotNull for non-precondition checks. I had hoped to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
      // 9999-12-31T23:59:59Z inclusive.
      optional int64 seconds = 1;
    
      // Non-negative fractions of a second at nanosecond resolution. Negative
      // second values with fractions must still have non-negative nanos values
      // that count forward in time. Must be from 0 to 999,999,999
      // inclusive. This field may be limited in precision depending on context.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
      // 9999-12-31T23:59:59Z inclusive.
      optional int64 seconds = 1;
    
      // Non-negative fractions of a second at nanosecond resolution. Negative
      // second values with fractions must still have non-negative nanos values
      // that count forward in time. Must be from 0 to 999,999,999
      // inclusive. This field may be limited in precision depending on context.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top