Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for tstamp (0.36 sec)

  1. 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)
  2. 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)
  3. docs/pl/docs/features.md

    ### Testy
    
    * 100% <abbr title="Ilość kodu, który jest automatycznie testowany">pokrycia kodu testami</abbr>.
    * 100% <abbr title="Deklaracje typów Python - dzięki nim twój edytor i zewnętrzne narzędzia mogą zapewnić Ci lepsze wsparcie ">adnotacji typów</abbr>.
    * Używany w aplikacjach produkcyjnych.
    
    ## Cechy Starlette
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. internal/auth/credentials.go

    	if cred.Expiration.IsZero() || cred.Expiration.Equal(timeSentinel) {
    		return false
    	}
    
    	return cred.Expiration.Before(time.Now().UTC())
    }
    
    // IsTemp - returns whether credential is temporary or not.
    func (cred Credentials) IsTemp() bool {
    	return cred.SessionToken != "" && !cred.Expiration.IsZero() && !cred.Expiration.Equal(timeSentinel)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/compile.go

    					j := i + rnd.Intn(len(b.Values)-i)
    					b.Values[i], b.Values[j] = b.Values[j], b.Values[i]
    				}
    			}
    		}
    
    		tStart := time.Now()
    		p.fn(f)
    		tEnd := time.Now()
    
    		// Need something less crude than "Log the whole intermediate result".
    		if f.Log() || f.HTMLWriter != nil {
    			time := tEnd.Sub(tStart).Nanoseconds()
    			var stats string
    			if logMemStats {
    				var mEnd runtime.MemStats
    				runtime.ReadMemStats(&mEnd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

            assertThat(WildcardType.class.isInstance(GenericsUtil.getElementTypeOfSet(t3)), is(true));
        }
    
        /**
         * @throws Exception
         */
        public void testMap() throws Exception {
            final Method m1 = MapType.class.getMethod("mapOfStringToObject");
            final Type t1 = m1.getGenericReturnType();
            assertThat(GenericsUtil.isTypeOf(t1, Map.class), is(true));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy.go

    // sendDownstream sends discovery response.
    func sendDownstream(downstream adsStream, response *discovery.DiscoveryResponse) error {
    	tStart := time.Now()
    	defer func() {
    		// This is a hint to help debug slow responses.
    		if time.Since(tStart) > 10*time.Second {
    			proxyLog.Warnf("sendDownstream took %v", time.Since(tStart))
    		}
    	}()
    	return downstream.Send(response)
    }
    
    func (p *XdsProxy) close() {
    	close(p.stopChan)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/provision_test.go

    				// is working on provisioning the PV, also add the operation start timestamp into local cache
    				// operationTimestamps. Rely on the existences of the start time stamp to create a PV for binding
    				if ctrl.operationTimestamps.Has("default/claim12-2") {
    					volume := newVolume("pvc-uid12-2", "1Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classExternal)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top