Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for tstamp (0.1 sec)

  1. 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)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// e.g. when validation checks if a specific attribute `foo` under a map `testMap`, the fieldPath could be set to `.testMap.foo`
    	// If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g. `.testList`
    	// It does not support list numeric index.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/internal/xcoff/xcoff.go

    	XTY_CM = 3 // Common csect definition
    )
    
    // Defines for File auxiliary definitions: x_ftype field of x_file
    const (
    	XFT_FN = 0   // Source File Name
    	XFT_CT = 1   // Compile Time Stamp
    	XFT_CV = 2   // Compiler Version Number
    	XFT_CD = 128 // Compiler Defined Information
    )
    
    // Storage-mapping class.
    const (
    	XMC_PR     = 0  // Program code
    	XMC_RO     = 1  // Read-only constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. 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)
  7. android/guava/src/com/google/common/hash/HashFunction.java

     *       how it performs on representative real-world data, which tends to contain many hidden
     *       patterns and clumps. The goal of a good hash function is to stamp these patterns out as
     *       thoroughly as possible.
     *   <li><b>bit-dispersing:</b> masking out any <i>single bit</i> from a hash code should yield only
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/HashFunction.java

     *       how it performs on representative real-world data, which tends to contain many hidden
     *       patterns and clumps. The goal of a good hash function is to stamp these patterns out as
     *       thoroughly as possible.
     *   <li><b>bit-dispersing:</b> masking out any <i>single bit</i> from a hash code should yield only
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/JoinerTest.java

        Joiner j = Joiner.on("x").useForNull("y");
        try {
          j = j.useForNull("y");
          fail();
        } catch (UnsupportedOperationException expected) {
        }
      }
    
      public void testMap() {
        MapJoiner j = Joiner.on(';').withKeyValueSeparator(':');
        assertEquals("", j.join(ImmutableMap.of()));
        assertEquals(":", j.join(ImmutableMap.of("", "")));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testshared/shared_test.go

    		}
    	}
    }
    
    // isNew returns if the path is newer than the time stamp used by touch.
    func isNew(t *testing.T, path string) bool {
    	t.Helper()
    	fi, err := os.Stat(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return fi.ModTime().After(stampTime)
    }
    
    // Fail unless path has been rebuilt (i.e. is newer than the time stamp used by
    // isNew)
    func AssertRebuilt(t *testing.T, msg, path string) {
    	t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
Back to top