Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 561 for yearly (0.27 sec)

  1. src/cmd/compile/internal/types2/validtype.go

    		//           type argument provided to it.
    		//
    		//           A correct optimization is important for pathological cases.
    		//           Keep code around for reference until we found an optimization.
    		//
    		// // Exit early if we already know t is valid.
    		// // This is purely an optimization but it prevents excessive computation
    		// // times in pathological cases such as testdata/fixedbugs/issue6977.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/go/types/validtype.go

    		//           type argument provided to it.
    		//
    		//           A correct optimization is important for pathological cases.
    		//           Keep code around for reference until we found an optimization.
    		//
    		// // Exit early if we already know t is valid.
    		// // This is purely an optimization but it prevents excessive computation
    		// // times in pathological cases such as testdata/fixedbugs/issue6977.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/net/http/httptest/server.go

    			// StateNew because they're not doing anything. It's
    			// possible StateNew is about to do something in a few
    			// milliseconds, but a previous CL to check again in a
    			// few milliseconds wasn't liked (early versions of
    			// https://golang.org/cl/15151) so now we just
    			// forcefully close StateNew. The docs for Server.Close say
    			// we wait for "outstanding requests", so we don't close things
    			// in StateActive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/internal/trace/gc.go

    	// pos time's non-strict predecessor).
    	//
    	// Very often, this will be nearby, so we optimize that case,
    	// but it may be arbitrarily far away, so we handled that
    	// efficiently, too.
    	const maxSeq = 8
    	if pos+maxSeq < len(util) && util[pos+maxSeq].Time > time {
    		// Nearby. Use a linear scan.
    		for pos+1 < len(util) && util[pos+1].Time <= time {
    			pos++
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    //      that a certain level of quantization is possible or required.
    //   b) An inference made by a quantization algorithm indicating that a
    //      quantized representation may be acceptable.
    //
    // Especially early in transformation, it is common to have pairs of
    // qcast/dcast at points where a transition to a quantized type is
    // required. In addition, it is also common to have an identity qcast
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    //      that a certain level of quantization is possible or required.
    //   b) An inference made by a quantization algorithm indicating that a
    //      quantized representation may be acceptable.
    //
    // Especially early in transformation, it is common to have pairs of
    // qcast/dcast at points where a transition to a quantized type is
    // required. In addition, it is also common to have an identity qcast
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  7. src/compress/flate/flate_test.go

    	t.Parallel()
    	testSizes := []int{
    		1, 2, 3, 4, 5, 6, 7, 8,
    		100, 1000, 10000, 100000,
    		128, 1024, 16384, 131072,
    
    		// Testing multiples of windowSize triggers the case
    		// where Read will fail to return an early io.EOF.
    		windowSize * 1, windowSize * 2, windowSize * 3,
    	}
    
    	var maxSize int
    	for _, n := range testSizes {
    		if maxSize < n {
    			maxSize = n
    		}
    	}
    
    	readBuf := make([]byte, 40)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (1)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

                assertSingleFileReport(ReportSeverity.ERROR, EditorMessages.failureUsingPrevious)
            }
        }
    
        @Test
        fun `report file fatality on early build configuration failure`() {
            // thus disabling syntax highlighting
    
            withKotlinBuildSrc()
            withFile(
                "buildSrc/src/main/kotlin/Foo.kt",
                """
                BOOM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/net/http/transfer.go

    			t.TransferEncoding = []string{"chunked"}
    		}
    		// If there's a body, conservatively flush the headers
    		// to any bufio.Writer we're writing to, just in case
    		// the server needs the headers early, before we copy
    		// the body and possibly block. We make an exception
    		// for the common standard library in-memory types,
    		// though, to avoid unnecessary TCP packets on the
    		// wire. (Issue 22088.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        const mlir::TFL::PassConfig& pass_config,
        mlir::OpPassManager& pass_manager) {
      if (pass_config.enable_stablehlo_quantizer) {
        // Convert StableHLO -> TFLite for fused quantization patterns early so that
        // quantized types do not go through the TF dialect which doesn't support
        // quantized types.
        pass_manager.addNestedPass<mlir::func::FuncOp>(
            mlir::odml::CreateUniformQuantizedStableHloToTflPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top