Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 711 for providedBy (0.24 sec)

  1. istioctl/pkg/analyze/analyze.go

    			}
    
    			// If we're not using kube (files only), add defaults for some resources we expect to be provided by Istio
    			if !useKube {
    				err := sa.AddDefaultResources()
    				if err != nil {
    					return err
    				}
    			}
    
    			// If files are provided, treat them (collectively) as a source.
    			parseErrors := 0
    			if len(readers) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    Eclipse Public License - v 2.0
    
        THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
        PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION
        OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
    
    1. DEFINITIONS
    
    "Contribution" means:
    
      a) in the case of the initial Contributor, the initial content
         Distributed under this Agreement, and
    
      b) in the case of each subsequent Contributor:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

            append(method.getDeclaringClass().getSimpleName());
            append(".");
            append(method.getName());
            append("()");
            return this;
        }
    
        /**
         * Appends some user provided value to the current node.
         */
        public TreeFormatter appendValue(@Nullable Object value) {
            // Implementation is currently dumb, can be made smarter
            if (value == null) {
                append("null");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. src/go/token/position.go

    // A File is a handle for a file belonging to a [FileSet].
    // A File has a name, size, and line offset table.
    type File struct {
    	name string // file name as provided to AddFile
    	base int    // Pos value range for this file is [base...base+size]
    	size int    // file size as provided to AddFile
    
    	// lines and infos are protected by mutex
    	mutex sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/authentication.go

    		fs.StringVar(&o.OIDC.UsernamePrefix, oidcUsernamePrefixFlag, "", ""+
    			"If provided, all usernames will be prefixed with this value. If not provided, "+
    			"username claims other than 'email' are prefixed by the issuer URL to avoid "+
    			"clashes. To skip any prefixing, provide the value '-'.")
    
    		fs.StringVar(&o.OIDC.GroupsClaim, oidcGroupsClaimFlag, "", ""+
    			"If provided, the name of a custom OpenID Connect claim for specifying user groups. "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // in the documentation and/or other materials provided with the
    // distribution.
    //     * Neither the name of Google Inc. nor the names of its
    // contributors may be used to endorse or promote products derived from
    // this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/net/http/fs.go

    }
    
    // ServeFile replies to the request with the contents of the named
    // file or directory.
    //
    // If the provided file or directory name is a relative path, it is
    // interpreted relative to the current directory and may ascend to
    // parent directories. If the provided name is constructed from user
    // input, it should be sanitized before calling [ServeFile].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		"If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored.")
    
    	fs.StringVar(&s.ServerCert.CertKey.CertFile, "tls-cert-file", s.ServerCert.CertKey.CertFile, ""+
    		"File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated "+
    		"after server cert). If HTTPS serving is enabled, and --tls-cert-file and "+
    		"--tls-private-key-file are not provided, a self-signed certificate and key "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/hash/BloomFilter.java

       * Reads a byte stream, which was written by {@linkplain #writeTo(OutputStream)}, into a {@code
       * BloomFilter}.
       *
       * <p>The {@code Funnel} to be used is not encoded in the stream, so it must be provided here.
       * <b>Warning:</b> the funnel provided <b>must</b> behave identically to the one used to populate
       * the original Bloom filter!
       *
       * @throws IOException if the InputStream throws an {@code IOException}, or if its data does not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// as a "not older than" constraint: the result contains data at least as new as the provided
    	// ResourceVersion. The newest available data is preferred, but any data not older than this
    	// ResourceVersion may be served.
    	ResourceVersion string
    }
    
    // ListOptions provides the options that may be provided for storage list operations.
    type ListOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top