Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for conditional (0.18 sec)

  1. 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)
  2. 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)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/ConditionalExecutionQueue.java

     * be that a worker lease must be acquired before execution.
     */
    public interface ConditionalExecutionQueue<T> extends Stoppable {
        /**
         * Submit a new conditional execution to the queue.  The execution will occur asynchronously when the provided
         * resource lock (see {@link ConditionalExecution#getResourceLock()}) can be acquired.  On completion,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectInterceptor.kt

    import okhttp3.internal.http.RealInterceptorChain
    
    /**
     * Opens a connection to the target server and proceeds to the next interceptor. The network might
     * be used for the returned response, or to validate a cached response with a conditional GET.
     */
    object ConnectInterceptor : Interceptor {
      @Throws(IOException::class)
      override fun intercept(chain: Interceptor.Chain): Response {
        val realChain = chain as RealInterceptorChain
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	TypePCRel                // PC-relative address
    	TypeLabel                // absolute address
    	TypeReg                  // integer register
    	TypeCondRegBit           // conditional register bit (0-31)
    	TypeCondRegField         // conditional register field (0-7)
    	TypeFPReg                // floating point register
    	TypeVecReg               // vector register
    	TypeVecSReg              // VSX register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K 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/vendor/golang.org/x/arch/arm/armasm/decode.go

    	}
    
    	x := binary.LittleEndian.Uint32(src)
    
    	// The instFormat table contains both conditional and unconditional instructions.
    	// Considering only the top 4 bits, the conditional instructions use mask=0, value=0,
    	// while the unconditional instructions use mask=f, value=f.
    	// Prepare a version of x with the condition cleared to 0 in conditional instructions
    	// and then assume mask=f during matching.
    	const condMask = 0xf0000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K 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