Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for Tstamp (1.63 sec)

  1. src/path/filepath/export_test.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package filepath
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 06 19:42:05 UTC 2020
    - 198 bytes
    - Viewed (0)
  2. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), type BpfHdr struct, Hdrlen uint16
    pkg syscall (freebsd-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
    pkg syscall (freebsd-386-cgo), type BpfHdr struct, Tstamp Timeval
    pkg syscall (freebsd-386-cgo), type BpfInsn struct
    pkg syscall (freebsd-386-cgo), type BpfInsn struct, Code uint16
    pkg syscall (freebsd-386-cgo), type BpfInsn struct, Jf uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
  3. src/os/export_test.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    // Export for testing.
    
    var Atime = atime
    var LstatP = &lstat
    var ErrWriteAtInAppendMode = errWriteAtInAppendMode
    var TestingForceReadDirLstat = &testingForceReadDirLstat
    var ErrPatternHasSeparator = errPatternHasSeparator
    
    func init() {
    	checkWrapErr = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 06:21:27 UTC 2023
    - 433 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testplugin/testdata/issue44956/main.go

    //
    //     X = &map{...}
    //
    // which compiles to
    //
    //     X = &stmp           // static
    //     stmp = makemap(...) // in init function
    //
    // plugin1 and plugin2 both import base. plugin1 doesn't use
    // base.X, so that symbol is deadcoded in plugin1.
    //
    // plugin1 is loaded first. base.init runs at that point, which
    // initialize base.stmp.
    //
    // plugin2 is then loaded. base.init already ran, so it doesn't run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/log/syslog/syslog.go

    func (n *netConn) writeString(p Priority, hostname, tag, msg, nl string) error {
    	if n.local {
    		// Compared to the network form below, the changes are:
    		//	1. Use time.Stamp instead of time.RFC3339.
    		//	2. Drop the hostname field from the Fprintf.
    		timestamp := time.Now().Format(time.Stamp)
    		_, err := fmt.Fprintf(n.conn, "<%d>%s %s[%d]: %s%s",
    			p, timestamp,
    			tag, os.Getpid(), msg, nl)
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. cmd/iam-store.go

    		// non-empty session tokens.
    		if !(cred.IsServiceAccount() || cred.IsTemp()) ||
    			cred.SessionToken == "" {
    			continue
    		}
    
    		var (
    			err    error
    			claims map[string]interface{} = cred.Claims
    		)
    
    		if cred.IsServiceAccount() {
    			claims, err = getClaimsFromTokenWithSecret(cred.SessionToken, cred.SecretKey)
    		} else if cred.IsTemp() {
    			var secretKey string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/module/pseudo.go

    func IsZeroPseudoVersion(v string) bool {
    	return v == ZeroPseudoVersion(semver.Major(v))
    }
    
    // PseudoVersionTime returns the time stamp of the pseudo-version v.
    // It returns an error if v is not a pseudo-version or if the time stamp
    // embedded in the pseudo-version is not a valid time.
    func PseudoVersionTime(v string) (time.Time, error) {
    	_, timestamp, _, _, err := parsePseudoVersion(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		Description:    "Time stamp format pattern requires additional fields in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrEvaluatorInvalidTimestampFormatPatternSymbolForParsing: {
    		Code:           "EvaluatorInvalidTimestampFormatPatternSymbolForParsing",
    		Description:    "Time stamp format pattern contains a valid format symbol that cannot be applied to time stamp parsing in the SQL expression.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/Classpath.java

     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>
     *     For jar files, the normalized path is empty.
     *     The content of the jar file is normalized so that time stamps and order of the zip entries in the jar file do not matter.
     *     This normalization applies to not only files directly on the classpath, but also
     *     to any jar files found inside directories or nested inside other jar files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 28 21:23:55 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  10. common/scripts/gobuild.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script builds and version stamps the output
    
    VERBOSE=${VERBOSE:-"0"}
    V=""
    if [[ "${VERBOSE}" == "1" ]];then
        V="-x"
        set -x
    fi
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    
    OUT=${1:?"output path"}
    shift
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 14:08:46 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top