Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,409 for providedBy (0.17 sec)

  1. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          "Work" shall mean the work of authorship, whether in Source or
          Object form, made available under the License, as indicated by a
          copyright notice that is included in or attached to the work
          (an example is provided in the Appendix below).
    
          "Derivative Works" shall mean any work, whether in Source or Object
          form, that is based on (or derived from) the Work and for which the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/app/cmd.go

    	proxyCmd.PersistentFlags().StringVar(&proxyArgs.TokenManagerPlugin, "tokenManagerPlugin", "",
    		"Token provider specific plugin name.")
    	// DEPRECATED. Flags for proxy configuration
    	proxyCmd.PersistentFlags().StringVar(&proxyArgs.ServiceCluster, "serviceCluster", constants.ServiceClusterName, "Service cluster")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r43/CapturingUserInputCrossVersionSpec.groovy

        }
    
        def "can capture user input if standard input was provided"() {
            when:
            withConnection { ProjectConnection connection ->
                runBuildWithStandardInput(connection)
            }
    
            then:
            output.contains(PROMPT)
            output.contains(answerOutput(true))
        }
    
        def "cannot capture user input if standard input was not provided"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/test/kube/dump.go

    			return nil
    		}
    		pods = podList.Items
    	}
    	return pods
    }
    
    // DumpPodState dumps the pod state for either the provided pods or all pods in the namespace if none are provided.
    func DumpPodState(_ resource.Context, c cluster.Cluster, workDir string, namespace string, pods ...corev1.Pod) {
    	pods = podsOrFetch(c, pods, namespace)
    
    	for _, pod := range pods {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. cmd/metrics-v3-handler.go

    //
    // When the `list` query parameter is provided (its value is ignored), the
    // server lists all metrics that could be returned for the requested path.
    //
    // The (repeatable) `buckets` query parameter is a list of bucket names (or it
    // could be a comma separated value) to return metrics with a bucket label.
    // Bucket metrics will be returned only for the provided buckets. If no buckets
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/cache/scopes/ScopedCacheBuilderFactory.java

         * <p>By default a cache is opened with a shared lock, so that it can be accessed by multiple processes. It is the caller's responsibility
         * to coordinate access to the cache. The initial lock level can be changed using the provided builder </p>
         *
         * @param key The cache key. This is a unique identifier within the cache scope.
         * @return The builder.
         */
        CacheBuilder createCacheBuilder(String key);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle-handlers_test.go

    			lifecycleResponse:  []byte(""),
    			errorResponse: APIErrorResponse{
    				Resource: SlashSeparator + bucketName + SlashSeparator,
    				Code:     "InvalidAccessKeyId",
    				Message:  "The Access Key Id you provided does not exist in our records.",
    			},
    			shouldPass: false,
    		},
    		// PUT empty credentials
    		{
    			method:             http.MethodPut,
    			bucketName:         bucketName,
    			accessKey:          "",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/nettest/nettest.go

    			return false
    		}
    	}
    	return true
    }
    
    // NewLocalListener returns a listener which listens to a loopback IP
    // address or local file system path.
    //
    // The provided network must be "tcp", "tcp4", "tcp6", "unix" or
    // "unixpacket".
    func NewLocalListener(network string) (net.Listener, error) {
    	stackOnce.Do(probeStack)
    	switch network {
    	case "tcp":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/work/AsyncWorkTracker.java

    public interface AsyncWorkTracker {
        enum ProjectLockRetention {
            RETAIN_PROJECT_LOCKS, RELEASE_PROJECT_LOCKS, RELEASE_AND_REACQUIRE_PROJECT_LOCKS
        }
        /**
         * Register a new item of asynchronous work with the provided build operation.
         *
         * @param operation - The build operation to associate the asynchronous work with
         * @param completion - The completion of the asynchronous work
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

      // with the token identifies as. Audience-aware token authenticators will
      // verify that the token was intended for at least one of the audiences in
      // this list. If no audiences are provided, the audience will default to the
      // audience of the Kubernetes apiserver.
      // +optional
      repeated string audiences = 2;
    }
    
    // TokenReviewStatus is the result of the token authentication request.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top