Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for dotlines (0.26 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPluginSmokeTest.groovy

            version << TestedVersions.kotlin.versions
        }
    
        def 'kotlin javascript (kotlin=#version, workers=#parallelTasksInProject)'() {
    
            setupForKotlinVersion(version)
    
            // kotlinjs has been removed in Kotlin 1.7 in favor of kotlin-mpp
            assumeTrue(kotlinPluginVersion.baseVersion < VersionNumber.version(1, 7))
    
            given:
            useSample("kotlin-js-sample")
            withKotlinBuildFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/html.go

        "outline-maroon",
        "outline-black"
    ];
    
    // state: which value is outlined this color?
    var outlined = {};
    for (var i = 0; i < outlines.length; i++) {
        outlined[outlines[i]] = "";
    }
    
    window.onload = function() {
        if (history.state !== null) {
            expandedDefault = history.state.expandedDefault;
        }
        if (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/LogContent.java

        }
    
        /**
         * Creates a new instance, from raw characters.
         */
        public static LogContent of(String chars) {
            return new LogContent(toLines(chars), false, false);
        }
    
        private static ImmutableList<String> toLines(String chars) {
            Builder<String> lines = ImmutableList.builder();
            int pos = 0;
            while (pos < chars.length()) {
                int next = chars.indexOf('\n', pos);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

      rewriter.create<func::ReturnOp>(output_mul_op.getLoc(),
                                      output_mul_op.getResult());
      rewriter.clearInsertionPoint();
      return new_func;
    }
    
    // Outlines non-approximate GELU into a stablehlo composite.
    //
    //    -> mul 1/sqrt(2) -> erf -> add 1 ->
    // in                                    mul
    //    ---------> mul 0.5 --------------->
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. docs/fr/docs/deployment/docker.md

    Il est intégré à Let's Encrypt. Ainsi, il peut gérer toutes les parties HTTPS, y compris l'acquisition et le renouvellement des certificats.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. docs/changelogs/upgrading_to_okhttp_4.md

    OkHttp 3.x. You can use an OkHttp 4.x .jar file with applications or libraries built for OkHttp 3.x.
    
    OkHttp is **not** source-compatible for Kotlin callers, but upgrading should be automatic thanks to
    Kotlin’s powerful deprecation features. Most developers should be able to use IntelliJ’s _Code
    Cleanup_ for a safe and fast upgrade.
    
    
    Backwards-Incompatible Changes
    ------------------------------
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

        llvm::function_ref<bool(tf_device::ClusterOp, ElementsAttr)> filter = {});
    
    // Creates a pass that outlines regions of tf_device.cluster operations.
    std::unique_ptr<OperationPass<ModuleOp>> CreateClusterOutliningPass();
    
    // Creates a pass that outlines regions of tf_device.launch operations.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLaunchOutliningPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         *   superclasses (excluding static callables from super-interfaces), and classes declared directly in the [KaSymbolWithMembers]. This
         *   follows Kotlin's rules about static inheritance in Java classes, where static callables are propagated from superclasses, but
         *   nested classes are not.
         *
         * #### Kotlin Example
         *
         * ```kotlin
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. SECURITY.md

    whether these uses were recommended or considered safe, or where we recommend
    some form of isolation when dealing with untrusted data. As a result, this
    document also outlines what issues we consider as TensorFlow security
    vulnerabilities.
    
    We recognize issues as vulnerabilities only when they occur in scenarios that we
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/encoding/xml/xml_test.go

    	for _, want := range linePos {
    		if _, err := dec.Token(); err != nil {
    			t.Errorf("Unexpected error: %v", err)
    			continue
    		}
    
    		gotLine, gotCol := dec.InputPos()
    		if gotLine != want[0] || gotCol != want[1] {
    			t.Errorf("dec.InputPos() = %d,%d, want %d,%d", gotLine, gotCol, want[0], want[1])
    		}
    	}
    }
    
    type allScalars struct {
    	True1     bool
    	True2     bool
    	False1    bool
    	False2    bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top