Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Tstamp (0.13 sec)

  1. 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)
  2. 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)
  3. src/cmd/link/internal/ld/xcoff.go

    	F_VARPG     = 0x0100
    	F_DYNLOAD   = 0x1000
    	F_SHROBJ    = 0x2000
    	F_LOADONLY  = 0x4000
    )
    
    // Auxiliary Header
    type XcoffAoutHdr64 struct {
    	Omagic      int16    // Flags - Ignored If Vstamp Is 1
    	Ovstamp     int16    // Version
    	Odebugger   uint32   // Reserved For Debugger
    	Otextstart  uint64   // Virtual Address Of Text
    	Odatastart  uint64   // Virtual Address Of Data
    	Otoc        uint64   // Toc Address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    	// we can reuse for temporary space (saTmp).
    	// When recurse_64 is called from sais_8_64, oldTmp is length 512
    	// (from text_64), and saTmp will typically be much larger, so we'll use saTmp.
    	// When deeper recursions come back to recurse_64, 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
    - 52.3K bytes
    - Viewed (0)
  5. cmd/iam.go

    	}
    
    	if isGroup {
    		_, err = sys.GetGroupDescription(userOrGroup)
    		if err != nil {
    			return
    		}
    	} else {
    		var isTemp bool
    		isTemp, _, err = sys.IsTempUser(userOrGroup)
    		if err != nil && err != errNoSuchUser {
    			return
    		}
    		if isTemp {
    			err = errIAMActionNotAllowed
    			return
    		}
    
    		// When the user is root credential you are not allowed to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    	user, exists := globalIAMSys.GetUser(ctx, accessKey)
    	if exists && (user.Credentials.IsTemp() || user.Credentials.IsServiceAccount()) {
    		// Updating STS credential is not allowed, and this API does not
    		// support updating service accounts.
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAddUserInvalidArgument), r.URL)
    		return
    	}
    
    	if (cred.IsTemp() || cred.IsServiceAccount()) && cred.ParentUser == accessKey {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/time/format.go

    	RFC1123Z    = "Mon, 02 Jan 2006 15:04:05 -0700" // RFC1123 with numeric zone
    	RFC3339     = "2006-01-02T15:04:05Z07:00"
    	RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00"
    	Kitchen     = "3:04PM"
    	// Handy time stamps.
    	Stamp      = "Jan _2 15:04:05"
    	StampMilli = "Jan _2 15:04:05.000"
    	StampMicro = "Jan _2 15:04:05.000000"
    	StampNano  = "Jan _2 15:04:05.000000000"
    	DateTime   = "2006-01-02 15:04:05"
    	DateOnly   = "2006-01-02"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/os/os_test.go

    		// testing it wouldn't work.
    		t.Skipf("skipping test on %v", runtime.GOOS)
    	}
    
    	var xerr error // error to return for x
    	*LstatP = func(path string) (FileInfo, error) {
    		if xerr != nil && strings.HasSuffix(path, "x") {
    			return nil, xerr
    		}
    		return Lstat(path)
    	}
    	defer func() { *LstatP = Lstat }()
    
    	dir := t.TempDir()
    	touch(t, filepath.Join(dir, "good1"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	// linking PIE binaries.
    	TLSIEtoLE func(P []byte, off, size int)
    
    	// optional override for assignAddress
    	AssignAddress func(ldr *loader.Loader, sect *sym.Section, n int, s loader.Sym, va uint64, isTramp bool) (*sym.Section, int, uint64)
    
    	// ELF specific information.
    	ELF ELFArch
    }
    
    var (
    	thearch Arch
    	lcSize  int32
    	rpath   Rpath
    	spSize  int32
    	symSize int32
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    /** Address styling not present in IE 8/9. */
    mark {
    	background: #ff0;
    	color: var(--black-color);
    }
    
    /** Correct font family set oddly in Safari 5 and Chrome. */
    code,
    kbd,
    pre,
    samp {
    	font-family: monospace, serif;
    	font-size: 1em;
    }
    
    /** Improve readability of pre-formatted text in all browsers. */
    pre {
    	white-space: pre-wrap;
    }
    
    /** Set consistent quote types. */
    q {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top