Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 178 for conditionMap (2.74 sec)

  1. common/config/tslint.json

        "rules": {
            "max-line-length": {
                "options": [160]
            },
            "arrow-parens": false,
            "new-parens": true,
            "no-arg": true,
            "no-bitwise": true,
            "no-conditional-assignment": true,
            "no-consecutive-blank-lines": true,
            "no-console": {
                "severity": "warning",
                "options": ["debug", "info", "log", "time", "timeEnd", "trace"]
            },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 11 23:32:21 UTC 2019
    - 631 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    .Specifying when signing is required
    ====
    include::sample[dir="snippets/signing/conditional/kotlin",files="build.gradle.kts[tags=conditional-signing]"]
    include::sample[dir="snippets/signing/conditional/groovy",files="build.gradle[tags=conditional-signing]"]
    ====
    
    In this example, we only want to require signing if we are building a release version and we are going to publish it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/settings.gradle.kts

    rootProject.name = "customizing-resolution-conditional-substitution-rule"
    val projectNames = listOf("project1", "project2", "project3")
    include("consumer")
    
    projectNames.forEach { name ->
        if (isIncluded(name)) {
            println("project $name is INTERNAL to this build")
            include(name)
        } else {
            println("project $name is external to this build")
        }
    }
    
    fun isIncluded(projectName: String): Boolean {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 616 bytes
    - Viewed (0)
  4. test/fixedbugs/issue49282.go

    			_, _ = s, s
    		}
    	}()
    }
    
    var One float64 = 1.0
    
    func f(d uintptr) {
    	var a, m []int
    	var s struct {
    		a, b, c, d, e int
    	}
    
    	g(d, a, m, s, uint(One)) // Uint of not-a-constant inserts a conditional, necessary to bug
    
    	defer func() uint {
    		return 0
    	}()
    }
    
    var d uintptr
    
    func h() {
    	f(d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 13:10:06 UTC 2021
    - 639 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    ====
    include::sample[dir="snippets/maven-publish/conditional-publishing/kotlin",files="build.gradle.kts[tags=task-config]"]
    include::sample[dir="snippets/maven-publish/conditional-publishing/groovy",files="build.gradle[tags=task-config]"]
    ====
    
    .Output of `gradle publish`
    ----
    > gradle publish
    include::{snippetsPath}/maven-publish/conditional-publishing/tests/publishingMavenConditionally.out[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

       * In a response, this field's name "no-cache" is misleading. It doesn't prevent us from caching
       * the response; it only means we have to validate the response with the origin server before
       * returning it. We can do this with a conditional GET.
       *
       * In a request, it means do not use a cache to satisfy the request.
       */
      @get:JvmName("noCache") val noCache: Boolean,
      /** If true, this response should not be cached. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/branchelim.go

    		}
    	}
    }
    
    func canCondSelect(v *Value, arch string, loadAddr *sparseSet) bool {
    	if loadAddr.contains(v.ID) {
    		// The result of the soon-to-be conditional move is used to compute a load address.
    		// We want to avoid generating a conditional move in this case
    		// because the load address would now be data-dependent on the condition.
    		// Previously it would only be control-dependent on the condition, which is faster
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. docs/en/mkdocs.yml

          advanced/nosql-databases.md: how-to/nosql-databases-couchbase.md
          advanced/graphql.md: how-to/graphql.md
          advanced/custom-request-and-route.md: how-to/custom-request-and-route.md
          advanced/conditional-openapi.md: how-to/conditional-openapi.md
          advanced/extending-openapi.md: how-to/extending-openapi.md
      mkdocstrings:
        handlers:
          python:
            options:
              extensions:
              - griffe_typingdoc
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/CharStreamsTest.java

            3,
            CharStreams.readLines(r, alwaysTrue).intValue());
    
        // Test a LineProcessor that is conditional.
        r = new StringReader(text);
        final StringBuilder sb = new StringBuilder();
        LineProcessor<Integer> conditional =
            new LineProcessor<Integer>() {
              int seen;
    
              @Override
              public boolean processLine(String line) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/CharStreamsTest.java

            3,
            CharStreams.readLines(r, alwaysTrue).intValue());
    
        // Test a LineProcessor that is conditional.
        r = new StringReader(text);
        final StringBuilder sb = new StringBuilder();
        LineProcessor<Integer> conditional =
            new LineProcessor<Integer>() {
              int seen;
    
              @Override
              public boolean processLine(String line) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top