Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,063 for involved (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/metrics.go

    			Help:      "Latencies in seconds of value transformation operations.",
    			// In-process transformations (ex. AES CBC) complete on the order of 20 microseconds. However, when
    			// external KMS is involved latencies may climb into hundreds of milliseconds.
    			Buckets:        metrics.ExponentialBuckets(5e-6, 2, 25),
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"transformation_type", "transformer_prefix"},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/SingleFileTreeElementMatcher.java

            // A better solution for output files would be to record the type of the output file and then using this type here instead of looking at the disk.
            // Though that is more involved and as soon as the file has been produced, the right file type will be detected here as well.
            boolean elementIsFile = !element.isDirectory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/DependencyClassPathProvider.java

            // This gradleApi() method creates a Gradle API classpath based on real jars for embedded test running.
            // Currently, this leaks additional dependencies that may cause unexpected issues.
            // This method is involved in generating the gradleApi() Jar which is used in a real Gradle run.
            // See: `org.gradle.api.internal.notations.DependencyClassPathNotationConverter`
            ClassPath classpath = ClassPath.EMPTY;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. plugin/pkg/admission/eventratelimit/apis/eventratelimit/types.go

    	// user
    	UserLimitType LimitType = "User"
    	// SourceAndObjectLimitType is a type of limit where there is one bucket used
    	// by each combination of source and involved object of the event.
    	SourceAndObjectLimitType LimitType = "SourceAndObject"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_tidy_replace.txt

    env GO111MODULE=on
    env GOFLAGS=-mod=mod
    [short] skip
    
    # golang.org/issue/30166: 'go mod tidy' should not crash if a replaced module is
    # involved in a cycle.
    cd cycle
    env GOTRACEBACK=off
    go mod tidy
    cd ..
    
    # From inside the module, 'go list -m all' should NOT include transitive
    # requirements of modules that have been replaced.
    go list -m all
    stdout 'rsc.io/quote/v3 v3.0.0'
    ! stdout 'rsc.io/sampler'
    ! stdout 'golang.org/x/text'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/EvaluationContextTest.groovy

            evaluateInBlock()  | evaluateInLambda()
            evaluateInLambda() | evaluateInBlock()
        }
    
        def "re-evaluating the owner in #evaluator throws exception when intermediate owner is involved"() {
            def otherOwner = createOwner()
    
            when:
            evaluator.apply(owner) {
                evaluator.apply(otherOwner) {
                    evaluator.apply(this.owner) {}
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. src/runtime/trace/trace.go

    // Context passed to [Log] and [WithRegion].
    //
    // For example, assume that we decided to froth milk, extract coffee,
    // and mix milk and coffee in separate goroutines. With a task,
    // the trace tool can identify the goroutines involved in a specific
    // cappuccino order.
    //
    //	ctx, task := trace.NewTask(ctx, "makeCappuccino")
    //	trace.Log(ctx, "orderID", orderID)
    //
    //	milk := make(chan bool)
    //	espresso := make(chan bool)
    //
    //	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/cors.go

    //	 HTTP request was initially issued by one origin but then later
    //	 redirected by another origin, the user agent MAY inform the server
    //	 that two origins were involved in causing the user agent to issue the
    //	 request
    //			origin-list = serialized-origin *( SP serialized-origin )
    func isOriginAllowed(originHeader string, allowedOriginPatternsREs []*regexp.Regexp) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 13:59:10 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_predicates.go

    // [Named.Obj] methods return the same [TypeName] symbol.
    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    // To ensure consistency, use a single [Importer] for
    // all loaded packages and their dependencies.
    // For more information, see https://github.com/golang/go/issues/57497.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

        }
    
        /**
         * Exclude of transitive dependency involved in a dependency cycle.
         *
         * Dependency graph:
         * a -> b -> c -> d -> c
         *
         * 'c' is excluded on dependency a->b
         */
        def "can excluded module involved in dependency cycle"() {
            given:
            repository {
                'a:a:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top