Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for lastPut (0.35 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/TestClassExecutionEventGenerator.java

        }
    
        //Extract class name from the fully qualified class name
        private static String classDisplayName(String className) {
            int lastDot = className.lastIndexOf('.');
            if (lastDot > 0) {
                return className.substring(lastDot + 1);
            } else {
                return className;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/Reflection.java

       * attempting to define the {@link Package} and hence load files.
       */
      public static String getPackageName(String classFullName) {
        int lastDot = classFullName.lastIndexOf('.');
        return (lastDot < 0) ? "" : classFullName.substring(0, lastDot);
      }
    
      /**
       * Ensures that the given classes are initialized, as described in <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/Reflection.java

       * attempting to define the {@link Package} and hence load files.
       */
      public static String getPackageName(String classFullName) {
        int lastDot = classFullName.lastIndexOf('.');
        return (lastDot < 0) ? "" : classFullName.substring(0, lastDot);
      }
    
      /**
       * Ensures that the given classes are initialized, as described in <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerWriter.kt

        val bitCount = 64 - java.lang.Long.numberOfLeadingZeros(v)
        val byteCount = (bitCount + 6) / 7
        for (shift in (byteCount - 1) * 7 downTo 0 step 7) {
          val lastBit = if (shift == 0) 0 else 0b1000_0000
          sink.writeByte(((v shr shift) and 0b0111_1111).toInt() or lastBit)
        }
      }
    
      override fun toString(): String = path.joinToString(separator = " / ")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pkg/util/async/bounded_frequency_runner.go

    		// We're allowed to run the function right now.
    		bfr.fn()
    		bfr.lastRun = bfr.timer.Now()
    		bfr.timer.Stop()
    		bfr.timer.Reset(bfr.maxInterval)
    		klog.V(3).Infof("%s: ran, next possible in %v, periodic in %v", bfr.name, bfr.minInterval, bfr.maxInterval)
    		return
    	}
    
    	// It can't run right now, figure out when it can run next.
    	elapsed := bfr.timer.Since(bfr.lastRun)   // how long since last run
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/list9.go

    // THE SOFTWARE.
    
    package ppc64
    
    import (
    	"cmd/internal/obj"
    	"fmt"
    )
    
    func init() {
    	obj.RegisterRegister(obj.RBasePPC64, REG_SPR0+1024, rconv)
    	// Note, the last entry in Anames is "LASTAOUT", it is not a real opcode.
    	obj.RegisterOpcode(obj.ABasePPC64, Anames[:len(Anames)-1])
    	obj.RegisterOpcode(AFIRSTGEN, GenAnames)
    }
    
    func rconv(r int) string {
    	if r == 0 {
    		return "NONE"
    	}
    	if r == REGG {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:12:43 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/cni/cniversionskew_test.go

    )
    
    // Currently only test CNI with one version behind.
    var versions = []string{NMinusOne}
    
    // TestCNIVersionSkew runs all traffic tests with older versions of CNI and lastest Istio.
    // This is to simulate the case where CNI and Istio control plane versions are out of sync during upgrade.
    func TestCNIVersionSkew(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. cluster/images/etcd/README.md

    `<etcd-version>-<image-revision>`, e.g. `3.0.17-0`.  The etcd version is the
    SemVer of latest etcd version available in the image. The image revision
    distinguishes between docker images with the same lastest etcd version but
    changes (bug fixes and backward compatible improvements) to the migration
    utility bundled with the image.
    
    In addition to the latest etcd version, each `registry.k8s.io/etcd` image contains
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/anames.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top