Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for presenter (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	return map_TypeMeta
    }
    
    var map_UpdateOptions = map[string]string{
    	"":                "UpdateOptions may be provided when updating an API object. All fields in UpdateOptions should also be present in PatchOptions.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            provider.calculatePresence(_) >> true
    
            expect:
            property.set(provider)
            assertValueIs(["123"])
            assertValueIs(["abc"])
        }
    
        def "mapped provider is presented with immutable copy of value"() {
            given:
            property.set(toMutable(["abc"]))
            def provider = property.map(new Transformer() {
                def transform(def value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                        }
                        expectResolve()
                    }
                }
            }
    
            then: "custom metadata rule prevented parsing of ivy descriptor"
            checkResolve "group:projectA:1.+": ["group:projectA:1.2", "didn't match version 2.0"],
                "group:projectB:latest.release": ["group:projectB:1.1", "didn't match version 2.2"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    }
    
    // Returns a (recursive) strategic merge patch that yields modified when applied to original.
    // Including:
    // - Adding fields to the patch present in modified, missing from original
    // - Setting fields to the patch present in modified and original with different values
    // - Delete fields present in original, missing from modified through
    // - IFF map field - set to nil in patch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            given:
            _ * provider1.type >> type
            _ * provider1.calculateValue(_) >> ValueSupplier.Value.of(a)
            _ * provider1.present >> true
            _ * provider2.type >> type
            _ * provider2.calculateValue(_) >> ValueSupplier.Value.of(b)
            _ * provider2.present >> true
            _ * provider3.type >> otherType
            container.addLater(provider1)
            container.addLater(provider2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/net/http/request.go

    // diagnose programs that use Header["Referrer"].
    func (r *Request) Referer() string {
    	return r.Header.Get("Referer")
    }
    
    // multipartByReader is a sentinel value.
    // Its presence in Request.MultipartForm indicates that parsing of the request
    // body has been handed off to a MultipartReader instead of ParseMultipartForm.
    var multipartByReader = &multipart.Form{
    	Value: make(map[string][]string),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

                rootProject.name = "myLib"
            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':outgoingVariants'
            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        def "if only resolvable configurations present, task reports complete absence"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. cmd/iam.go

    				if errors.Is(err, errNoSuchPolicy) {
    					// all policies presented in the claim should exist
    					iamLogIf(GlobalContext, fmt.Errorf("expected policy (%s) missing from the JWT claim %s, rejecting the request", pname, iamPolicyClaimNameOpenID()))
    					return false
    				}
    			}
    			iamLogIf(GlobalContext, fmt.Errorf("all policies were unexpectedly present!"))
    			return false
    		}
    
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    .Output of **`gradle components`**
    ----
    > gradle components
    include::{snippetsPath}/native-binaries/cpp/tests/nativeComponentReport.out[]
    ----
    
    
    [[native_binaries:languages]]
    == Language support
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    Boolean present = annotations.get(annotationType);
                    if (present == null) {
                        // Multiple threads may calculate this at the same time, which is ok
                        present = locateAnnotation(annotationType);
                        annotations.putIfAbsent(annotationType, present);
                    }
                    return present;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top