Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 273 for _ecounters (0.22 sec)

  1. src/internal/godebug/godebug.go

    //	var goTypesAlias = godebug.New("gotypesalias") // NOT THIS
    //
    // The test in internal/godebugs that checks for use of IncNonDefault
    // requires the use of this convention.
    //
    // Note that counters used with IncNonDefault must be added to
    // various tables in other packages. See the [Setting.IncNonDefault]
    // documentation for details.
    package godebug
    
    // Note: Be careful about new imports here. Any package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

                  ++counts;
                }
              }
            }
            if (done) {
              break;
            }
          }
        }
      }
    
      /**
       * Multiple threads using same array of counters successfully update a number of times equal to
       * total count
       */
      public void testCountingInMultipleThreads() throws InterruptedException {
        final AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/internal/trace/gc.go

    	// function is continuous and piecewise linear (unless
    	// window==0, which we handle elsewhere), where the boundaries
    	// between segments occur when either edge of the window
    	// encounters a change in the instantaneous mutator
    	// utilization function. Hence, the minimum of this function
    	// will always occur when one of the edges of the window
    	// aligns with a utilization change, so these are the only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/encoding/json/stream.go

    // At the end of the input stream, Token returns nil, [io.EOF].
    //
    // Token guarantees that the delimiters [ ] { } it returns are
    // properly nested and matched: if Token encounters an unexpected
    // delimiter in the input, it will return an error.
    //
    // The input stream consists of basic JSON values—bool, string,
    // number, and null—along with delimiters [ ] { } of type [Delim]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

       * given to [connectionUser] who may (for example) assign it to a [RealCall.connection].
       *
       * This confirms the returned connection is healthy before returning it. If this encounters any
       * unhealthy connections in its search, this will clean them up.
       *
       * If [routes] is non-null these are the resolved routes (ie. IP addresses) for the connection.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

            },
            "lastKnownGood": {
              "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  7. src/math/big/arith_s390x.s

    	ADDC   0(R6), R7
    	MOVD   R7, 0(R8)
    	CMPBEQ R5, $1, returnResult // len(z) == 1
    	MOVD   $0, R9
    	ADDE   8(R6), R9
    	MOVD   R9, 8(R8)
    	CMPBEQ R5, $2, returnResult // len(z) == 2
    
    	// Update the counters
    	MOVD $16, R12    // i = 2
    	MOVD $-2(R5), R5 // n = n - 2
    
    loopOverEachWord:
    	BRC  $12, copySetup // carry = 0, copy the rest
    	MOVD $1, R9
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. cmd/bucket-stats.go

    // Update replication upload latency with a new value
    func (rl *ReplicationLatency) update(size int64, duration time.Duration) {
    	rl.UploadHistogram.Add(size, duration)
    }
    
    // ReplicationLastMinute has last minute replication counters
    type ReplicationLastMinute struct {
    	LastMinute lastMinuteLatency
    }
    
    func (rl ReplicationLastMinute) merge(other ReplicationLastMinute) (nl ReplicationLastMinute) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    	// No need to deep copy the podInfo because it shouldn't change.
    	copy.podInfo = s.podInfo
    	copy.namespaceLabels = s.namespaceLabels
    	return &copy
    }
    
    // updateWithPod updates the preFilterState counters with the (anti)affinity matches for the given podInfo.
    func (s *preFilterState) updateWithPod(pInfo *framework.PodInfo, node *v1.Node, multiplier int64) {
    	if s == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/codegen_test_h.golden

        proto->ParseFromArray(&__tfcompile_foo_bar_MyClass_ProgramShapeProto_protobuf_array_contents[0], 157);
        return proto;
      }();
        return kShape;
      }
    
      // Metadata that can be used to pretty-print profile counters.
      static const ::xla::HloProfilePrinterData* StaticHloProfilePrinterData() {
        static const ::xla::HloProfilePrinterData* kHloProfilePrinterData =
          nullptr;
        return kHloProfilePrinterData;
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top