Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,284 for tcRange (0.19 sec)

  1. docs/changelogs/changelog_2x.md

    OkHttp 2.x Change Log
    =====================
    
    ## Version 2.7.5
    
    _2016-02-25_
    
     *  Fix: Change the certificate pinner to always build full chains. This
        prevents a potential crash when using certificate pinning with the Google
        Play Services security provider.
    
    
    ## Version 2.7.4
    
    _2016-02-07_
    
     *  Fix: Don't crash when finding the trust manager if the Play Services (GMS)
        security provider is installed.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/fieldmanager_test.go

    metadata:
      name: my-deployment
      labels:
        app: my-app-v2 # change
    spec:
      replicas: 8 # change
      selector:
        matchLabels:
          app: my-app-v2 # change
      template:
        metadata:
          labels:
            app: my-app-v2 # change
        spec:
          containers:
          - name: my-c
            image: my-image-v2 # change
    `)
    	if err := yaml.Unmarshal(appliedDeployment, &appliedObj.Object); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

        def "does not re-execute build with no change"() {
            given:
            run "installMainExecutable"
    
            when:
            run "installMainExecutable"
    
            then:
            allSkipped()
        }
    
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        @ToBeFixedForConfigurationCache
        def "rebuilds executable with source file change"() {
            given:
            run "installMainExecutable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    outputFiles[property] << ' changed'
                }
            ]
    
            def changeFirstBean(String change) {
                changes[change]('first')
            }
    
            def changeSecondBean(String change) {
                changes[change]('second')
            }
    
            def prepareInputFiles() {
                file(firstInputFile).text = "first input file"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

             "resource-type input.");
      bool change = false;
      // Copy ID set because function `AddValueUniqueIDMapping` below is not
      // guaranteed to preserve pointer stability (see b/243813657).
      const llvm::SmallSet<int64_t, 8> id_set = operand_it->second;
      assert(operand != result);
      for (int64_t id : id_set)
        change = AddValueUniqueIDMapping(result, id) || change;
      return change;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

            then:
            executedAndNotSkipped ":a:${language.compileTaskName}"
            executedAndNotSkipped ":b:${language.compileTaskName}"
    
            when:
            // ABI change of inner class
            sourceFile.text = """
                public class ToolImpl {
                    private class Thing {
                        public long v;
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. src/runtime/mgclimit.go

    	change := gcTime - mutatorTime
    
    	// Handle limiting case.
    	if change > 0 && headroom <= uint64(change) {
    		l.overflow += uint64(change) - headroom
    		l.bucket.fill = l.bucket.capacity
    		if !enabled {
    			l.enabled.Store(true)
    			l.lastEnabledCycle.Store(memstats.numgc + 1)
    		}
    		return
    	}
    
    	// Handle non-limiting cases.
    	if change < 0 && l.bucket.fill <= uint64(-change) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

            ).assertSameApi()
        }
    
        // test throws until we can detect lambdas in inline functions and treat them as ABI
        @Test(expected = CompileAvoidanceException::class)
        fun `changes to inline method bodies change generated API class`() {
            givenChangingClass(
                "Foo",
                """
                    inline fun foo(): String {
                        return "foo"
                    }
                """,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. CHANGELOG.md

    Change Log
    ==========
    
    ## Version 4.x
    
    See [4.x Change log](https://square.github.io/okhttp/changelogs/changelog_4x/) for the stable version changelogs.
    
    ## Version 5.0.0-alpha.14
    
    _2024-04-17_
    
     *  Breaking: Move coroutines extensions to okhttp3.coroutines. Previously this artifact shared the
        `okhttp3` package name with our core module, which is incompatible with the Java Platform Module
        System.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.cc

      pybind11::google::ImportStatusModule();
      pybind11_protobuf::ImportNativeProtoCasters();
    
      m.def(
          // If the function signature changes, likely its corresponding .pyi type
          // hinting should also change.
          // LINT.IfChange
          "quantize_qat_model",
          [](const absl::string_view src_saved_model_path,
             const absl::string_view dst_saved_model_path,
             const QuantizationOptions& quantization_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top