Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 314 for providedBy (0.18 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

            withValidityAssertion { analysisSession.typeProvider.getAllSuperTypes(this, shouldApproximate) }
    
        /**
         * This function is provided for a few use-cases where it's hard to go without it.
         *
         * **Please avoid using it**; it will probably be removed in the future.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	// to be used as a input for validating user provided kubeconfig files
    	caCert, err := pkiutil.TryLoadCertFromDisk(cfg.CertificatesDir, kubeadmconstants.CACertAndKeyBaseName)
    	if err != nil {
    		return errors.Wrapf(err, "the CA file couldn't be loaded")
    	}
    	// Validate period
    	certsphase.CheckCertificatePeriodValidity(kubeadmconstants.CACertAndKeyBaseName, caCert)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. pom.xml

    			<plugin>
    				<artifactId>maven-dependency-plugin</artifactId>
    				<executions>
    					<execution>
    						<id>unpack-provided</id>
    						<phase>generate-resources</phase>
    						<goals>
    							<goal>unpack-dependencies</goal>
    						</goals>
    						<configuration>
    							<includeScope>provided</includeScope>
    							<outputDirectory>${project.build.directory}/tomcat-lib</outputDirectory>
    							<includes>**/*</includes>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  4. pkg/volume/plugins.go

    	// the provided spec.  This is used to implement volume plugins which
    	// "wrap" other plugins.  For example, the "secret" volume is
    	// implemented in terms of the "emptyDir" volume.
    	NewWrapperMounter(volName string, spec Spec, pod *v1.Pod, opts VolumeOptions) (Mounter, error)
    
    	// NewWrapperUnmounter finds an appropriate plugin with which to handle
    	// the provided spec.  See comments on NewWrapperMounter for more
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

                return Jvm.current().getJavaHome();
            } else if (daemonParameters.getRequestedJvmBasedOnJavaHome() != null) {
                // Either the TAPI client or org.gradle.java.home has been provided
                return daemonParameters.getRequestedJvmBasedOnJavaHome().getJavaHome();
            } else {
                return Jvm.current().getJavaHome();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. cmd/api-router.go

    	},
    }
    
    // Set of s3 handler options as bit flags.
    type s3HFlag uint8
    
    const (
    	// when provided, disables Gzip compression.
    	noGZS3HFlag = 1 << iota
    
    	// when provided, enables only tracing of headers. Otherwise, both headers
    	// and body are traced.
    	traceHdrsS3HFlag
    
    	// when provided, disables throttling via the `maxClients` middleware.
    	noThrottleS3HFlag
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/policy/v1/types.go

    	// - SufficientPods: There are more pods than required by the PodDisruptionBudget.
    	//                   The condition will be True, and the number of allowed
    	//                   disruptions are provided by the disruptionsAllowed property.
    	//
    	// +optional
    	// +patchMergeKey=type
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    	checks, found := r.URL.Query()["exclude"]
    	if found {
    		return sets.NewString(checks...)
    	}
    	return sets.NewString()
    }
    
    // handleRootHealth returns an http.HandlerFunc that serves the provided checks.
    func handleRootHealth(name string, firstTimeHealthy func(), checks ...HealthChecker) http.HandlerFunc {
    	var notifyOnce sync.Once
    	return func(w http.ResponseWriter, r *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/infer.go

    	//
    	// Without substitution we get the (worse) error:
    	//   "type string of s does not match inferred type int for P"
    	// even though the type int was provided (not inferred) for P.
    	//
    	// TODO(gri) We might be able to finesse this in the error message reporting
    	//           (which only happens in case of an error) and then avoid doing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Tables.java

    public final class Tables {
      private Tables() {}
    
      /**
       * Returns a {@link Collector} that accumulates elements into a {@code Table} created using the
       * specified supplier, whose cells are generated by applying the provided mapping functions to the
       * input elements. Cells are inserted into the generated {@code Table} in encounter order.
       *
       * <p>If multiple input elements map to the same row and column, an {@code IllegalStateException}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top