Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 178 for conditionMap (4.74 sec)

  1. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/groovy/settings.gradle

    rootProject.name = 'maven-conditional-publishing'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/SamplesIvyPublishIntegrationTest.groovy

            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("ivy-publish/conditional-publishing/groovy")
        def conditionalPublishing() {
            given:
            sample sampleProject
    
            and:
            def artifactId = "maven-conditional-publishing"
            def version = "1.0"
            def externalRepo = ivy(sampleProject.dir.file("build/repos/external"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/signing/conditional/groovy/settings.gradle

    rootProject.name = 'conditional'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  4. test/codegen/shortcircuit.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    func efaceExtract(e interface{}) int {
    	// This should be compiled with only
    	// a single conditional jump.
    	// amd64:-"JMP"
    	if x, ok := e.(int); ok {
    		return x
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 08 22:13:38 UTC 2020
    - 368 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/bestPractices/conditionalLogic-dont/groovy/settings.gradle

    rootProject.name = 'conditional-logic-dont'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 44 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/bestPractices/conditionalLogic-dont/kotlin/settings.gradle.kts

    rootProject.name = "conditional-logic-dont"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 44 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/settings.gradle

    rootProject.name = 'customizing-resolution-conditional-substitution-rule'
    ext.projectNames = ["project1", "project2", "project3"]
    include 'consumer'
    
    projectNames.each { name ->
        if (isIncluded(name)) {
            println "project $name is INTERNAL to this build"
            include name
        } else {
            println "project $name is external to this build"
        }
    }
    
    def isIncluded(String projectName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 593 bytes
    - Viewed (0)
  8. cmd/postpolicyform.go

    type PostPolicyForm struct {
    	Expiration time.Time // Expiration date and time of the POST policy.
    	Conditions struct {  // Conditional policy structure.
    		Policies []struct {
    			Operator string
    			Key      string
    			Value    string
    		}
    		ContentLengthRange contentLengthRange
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. internal/config/cache/remote.go

    	Data         []byte            `json:"data,omitempty" msg:",omitempty"` // Data can container full data of the object or partial
    }
    
    // WriteHeaders writes the response headers for conditional requests
    func (oi ObjectInfo) WriteHeaders(w http.ResponseWriter, preamble, statusCode func()) {
    	preamble()
    
    	if !oi.ModTime.IsZero() {
    		w.Header().Set(xhttp.LastModified, oi.ModTime.UTC().Format(http.TimeFormat))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 21:46:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. docs/features/caching.md

    ```
    
    ## EventListener events 
    
    Cache Events are exposed via the EventListener API.  Typical scenarios are below.
    
    ### Cache Hit
    
    In the ideal scenario the cache can fulfill the request without any conditional call to the network.
    This will skip the normal events such as DNS, connecting to the network, and downloading the response body.
    
    As recommended by the HTTP RFC the max age of a document is defaulted to 10% of the 
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top