Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for Tstamp (0.15 sec)

  1. src/main/webapp/WEB-INF/fe.tld

        <name>date</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.util.Date date(java.lang.Long)</function-signature>
        <example>
          ${fe:date(doc.tstamp)}
        </example>
      </function>
    
      <function>
        <description>
          Returns Date from a given value.
        </description>
        <name>parseDate</name>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 28 07:49:35 UTC 2020
    - 10K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    }
    
    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    
    type BpfHdr struct {
    	Tstamp  Timeval32
    	Caplen  uint32
    	Datalen uint32
    	Hdrlen  uint16
    	_       [2]byte
    }
    
    type Termios struct {
    	Iflag  uint64
    	Oflag  uint64
    	Cflag  uint64
    	Lflag  uint64
    	Cc     [20]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    }
    
    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    
    type BpfHdr struct {
    	Tstamp  Timeval32
    	Caplen  uint32
    	Datalen uint32
    	Hdrlen  uint16
    	_       [2]byte
    }
    
    type Termios struct {
    	Iflag  uint64
    	Oflag  uint64
    	Cflag  uint64
    	Lflag  uint64
    	Cc     [20]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/runtime/mgclimit.go

    			print("runtime: want=", typ, " got=", stamp.typ(), "\n")
    			throw("limiterEvent.stop: found wrong event in p's limiter event slot")
    		}
    		if e.stamp.CompareAndSwap(uint64(stamp), uint64(limiterEventStampNone)) {
    			break
    		}
    	}
    	duration := stamp.duration(now)
    	if duration == 0 {
    		// It's possible that we're missing time because we crossed a
    		// 2^(64-limiterEventBits) boundary between the start and end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. internal/s3select/unused-errors.go

    		message:    "Time stamp format pattern contains a valid format symbol that cannot be applied to time stamp parsing in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errEvaluatorTimestampFormatPatternDuplicateFields(err error) *s3Error {
    	return &s3Error{
    		code:       "EvaluatorTimestampFormatPatternDuplicateFields",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/os/os_unix_test.go

    		}
    	}
    }
    
    // Issue 16919: Readdir must return a non-empty slice or an error.
    func TestReaddirRemoveRace(t *testing.T) {
    	oldStat := *LstatP
    	defer func() { *LstatP = oldStat }()
    	*LstatP = func(name string) (FileInfo, error) {
    		if strings.HasSuffix(name, "some-file") {
    			// Act like it's been deleted.
    			return nil, ErrNotExist
    		}
    		return oldStat(name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

            this.noTimestamp = noTimestamp;
        }
    
        /**
         * Returns whether to include version stamp within hidden comment in generated HTML (Groovy &gt;= 2.4.6).
         */
        @Input
        public boolean isNoVersionStamp() {
            return noVersionStamp;
        }
    
        /**
         * Sets whether to include version stamp within hidden comment in generated HTML (Groovy &gt;= 2.4.6).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. cmd/auth-handler.go

    	}
    
    	if token == "" && cred.IsTemp() && !cred.IsServiceAccount() {
    		// Temporary credentials should always have x-amz-security-token
    		return nil, ErrInvalidToken
    	}
    
    	if token != "" && !cred.IsTemp() {
    		// x-amz-security-token should not present for static credentials.
    		return nil, ErrInvalidToken
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais.go

    	// we can reuse for temporary space (saTmp).
    	// When recurse_32 is called from sais_8_32, oldTmp is length 512
    	// (from text_32), and saTmp will typically be much larger, so we'll use saTmp.
    	// When deeper recursions come back to recurse_32, now oldTmp is
    	// the saTmp from the top-most recursion, it is typically larger than
    	// the current saTmp (because the current sa gets smaller and smaller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. src/time/format_test.go

    	// Three-letter months and days must not be followed by lower-case letter.
    	{"Janet", "Hi Janet, the Month is January", "Hi Janet, the Month is February"},
    	// Time stamps, Fractional seconds.
    	{"Stamp", Stamp, "Feb  4 21:00:57"},
    	{"StampMilli", StampMilli, "Feb  4 21:00:57.012"},
    	{"StampMicro", StampMicro, "Feb  4 21:00:57.012345"},
    	{"StampNano", StampNano, "Feb  4 21:00:57.012345600"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top