Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for lastPut (0.15 sec)

  1. src/database/sql/sql.go

    			fmt.Printf("putConn(%v) DUPLICATE was: %s\n\nPREVIOUS was: %s", dc, stack(), db.lastPut[dc])
    		}
    		panic("sql: connection returned that was never out")
    	}
    
    	if !errors.Is(err, driver.ErrBadConn) && dc.expired(db.maxLifetime) {
    		db.maxLifetimeClosed++
    		err = driver.ErrBadConn
    	}
    	if debugGetPut {
    		db.lastPut[dc] = stack()
    	}
    	dc.inUse = false
    	dc.returnedAt = nowFunc()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	)
    
    	// No queries will be run.
    	db, err := Open("test", fakeDBName)
    	if err != nil {
    		t.Fatalf("Open: %v", err)
    	}
    	defer closeDB(t, db)
    	defer func() {
    		for k, v := range db.lastPut {
    			t.Logf("%p: %v", k, v)
    		}
    	}()
    
    	db.SetMaxOpenConns(maxOpen)
    	db.SetMaxIdleConns(0)
    
    	errOffline := errors.New("db offline")
    
    	defer func() { setHookOpenErr(nil) }()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

            filter.getCommandLineIncludePatterns().each { includePattern ->
                def lastDot = includePattern.lastIndexOf(".")
                if (lastDot == -1) {
                    classOnlyFilters.add(includePattern)
                } else {
                    def className = includePattern.substring(0, lastDot)
                    def methodName = includePattern.substring(lastDot + 1)
                    if (Character.isLowerCase(methodName.charAt(0))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. 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)
  8. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        /**
         * Index of element returned by most recent call to next. Reset to -1 if this element is deleted
         * by a call to remove.
         */
        private int lastRet;
    
        Itr() {
          lastRet = -1;
          if (count == 0) nextIndex = -1;
          else {
            nextIndex = takeIndex;
            nextItem = items[takeIndex];
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  9. 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)
  10. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        /**
         * Index of element returned by most recent call to next. Reset to -1 if this element is deleted
         * by a call to remove.
         */
        private int lastRet;
    
        Itr() {
          lastRet = -1;
          if (count == 0) nextIndex = -1;
          else {
            nextIndex = takeIndex;
            nextItem = items[takeIndex];
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
Back to top