Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for verb (0.29 sec)

  1. JavadocStyleGuide.md

    ## 1.2 The summary fragment
    
    Each Javadoc block begins with a brief summary fragment - this is the first sentence up until the character `.` is encountered.
    
    This fragment is very important: it is the only part of the text that appears in certain contexts such as class and method indexes:
    
    ```java
    /**
     * Returns an Image object that can then be painted on the screen.
     */
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/crypto/tls/ticket.go

    }
    
    // sessionState returns a partially filled-out [SessionState] with information
    // from the current connection.
    func (c *Conn) sessionState() *SessionState {
    	return &SessionState{
    		version:           c.vers,
    		cipherSuite:       c.cipherSuite,
    		createdAt:         uint64(c.config.time().Unix()),
    		alpnProtocol:      c.clientProtocol,
    		peerCertificates:  c.peerCertificates,
    		activeCertHandles: c.activeCertHandles,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/runtime/debug/garbage.go

    // nearly continuously. However, the application may still make
    // progress.
    //
    // The memory limit is always respected by the Go runtime, so to
    // effectively disable this behavior, set the limit very high.
    // [math.MaxInt64] is the canonical value for disabling the limit,
    // but values much greater than the available memory on the underlying
    // system work just as well.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/ztunnelserver.go

    		go func() {
    			log.Debug("handling conn")
    			if err := z.handleConn(ctx, conn); err != nil {
    				log.Errorf("failed to handle conn: %v", err)
    			}
    		}()
    	}
    }
    
    // ZDS protocol is very simple, for every message sent, and ack is sent.
    // the ack only has temporal correlation (i.e. it is the first and only ack msg after the message was sent)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        CALIBRATION_METHOD_AVERAGE_MIN_MAX = 2;
        // Use the min/max percentile value of histogram.
        CALIBRATION_METHOD_HISTOGRAM_PERCENTILE = 3;
        // Use the histogram mid values that minimize MSE error.
        // This is very slow algorithm because it computes all errors for all
        // histogram mid value pairs. Therefore the value of num_bins is recommended
        // to be 256 or less.
        CALIBRATION_METHOD_HISTOGRAM_MSE_BRUTEFORCE = 4;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

            /**
             * Not all expressions appear in the [ControlFlowGraph].
             * Still, if we find at least some of them, it's very unlikely that we will ever find a better graph.
             */
            val firCandidates = buildSet {
                fun addCandidate(firCandidate: FirElement) {
                    add(firCandidate)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. src/image/gif/writer.go

    	} else {
    		ct, err := encodeColorTable(e.localColorTable[:], pm.Palette, paddedSize)
    		if err != nil {
    			if e.err == nil {
    				e.err = err
    			}
    			return
    		}
    		// This frame's palette is not the very same slice as the global
    		// palette, but it might be a copy, possibly with one value turned into
    		// transparency by DecodeAll.
    		if ct <= e.globalCT && e.colorTablesMatch(len(pm.Palette), transparentIndex) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

       * bash, it caught on in a flash He did the bash, he did the future bash
       */
    
      public void testFutureBash() {
        if (isWindows()) {
          return; // TODO: b/136041958 - Running very slowly on Windows CI.
        }
        final CyclicBarrier barrier =
            new CyclicBarrier(
                6 // for the setter threads
                    + 50 // for the listeners
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/context.go

    func ParseIstioVersion(ver string) *IstioVersion {
    	// strip the release- prefix if any and extract the version string
    	ver = istioVersionRegexp.FindString(strings.TrimPrefix(ver, "release-"))
    
    	if ver == "" {
    		// return very large values assuming latest version
    		return MaxIstioVersion
    	}
    
    	parts := strings.Split(ver, ".")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  10. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

      ASSERT_THAT(main_fn, NotNull());
    
      auto op_nullptr =
          FindOperationOfType<DotGeneralOp>(main_fn)->getNextNode()->getNextNode();
      // getNextNode() returns a nullptr if at the very last node.
      EXPECT_THAT(op_nullptr, IsNull());
    
      EXPECT_TRUE(failed(TryCast<DotGeneralOp>(op_nullptr, /*name=*/"op_nullptr")));
      EXPECT_TRUE(failed(TryCast<DotGeneralOp>(nullptr, /*name=*/"nullptr")));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top