Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,033 for sget (0.05 sec)

  1. hack/ginkgo-e2e.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script runs e2e tests on Google Cloud Platform.
    # Usage: `hack/ginkgo-e2e.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/cluster/common.sh"
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Find the ginkgo binary build as part of the release.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. cluster/gce/manifests/etcd.manifest

    "priorityClassName": "system-node-critical",
    "priority": 2000001000,
    "hostNetwork": true,
    "containers":[
        {
        "name": "etcd-container",
        {{security_context}}
        "image": "{{ pillar.get('etcd_docker_repository', 'registry.k8s.io/etcd') }}:{{ pillar.get('etcd_docker_tag', '3.5.14-0') }}",
        "resources": {
          "requests": {
            "cpu": {{ cpulimit }}
          }
        },
        "command": [
                  "/bin/sh",
                  "-c",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

    private
    fun isNotAbstractTaskField(field: Field) =
        field.declaringClass != org.gradle.api.internal.AbstractTask::class.java
    
    
    private
    val Field.isTransient
        get() = isTransient(modifiers)
    
    
    private
    val Field.isStatic
        get() = isStatic(modifiers)
    
    
    private
    val abstractTaskRelevantFields = listOf(
        "actions",
        "enabled",
        "timeout",
        "onlyIfSpec",
        "logger",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

     * {@link Provider} and can be used in the same way as a {@link Provider}. A property's value can be accessed
     * using the methods of {@link Provider} such as {@link Provider#get() get()}. The value can be modified by
     * using the methods {@link #set(Object)} and {@link #set(Provider)}, or their fluid API counterparts
     * {@link #value(Object)} and {@link #value(Provider)}.
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/make.bash

    # building the commands.
    #
    # CGO_ENABLED: Controls cgo usage during the build. Set it to 1
    # to include all cgo related files, .c and .go file with "cgo"
    # build directive, in the build. Set it to 0 to ignore them.
    #
    # GO_EXTLINK_ENABLED: Set to 1 to invoke the host linker when building
    # packages that use cgo.  Set to 0 to do all linking internally.  This
    # controls the default behavior of the linker's -linkmode option.  The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirDelegatingTypeScope.kt

    ) : KaTypeScope {
        override val token: KaLifetimeToken get() = builder.token
    
        private val allNamesCached by cached {
            getPossibleCallableNames() + getPossibleClassifierNames()
        }
    
        override fun getAllPossibleNames(): Set<Name> = withValidityAssertion { allNamesCached }
    
        override fun getPossibleCallableNames(): Set<Name> = withValidityAssertion {
            firScope.getCallableNames()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. cmd/metrics-v3-cluster-config.go

    func loadClusterConfigMetrics(ctx context.Context, m MetricValues, c *metricsCache) error {
    	clusterDriveMetrics, err := c.clusterDriveMetrics.Get()
    	if err != nil {
    		metricsLogIf(ctx, err)
    	} else {
    		m.Set(configStandardParity, float64(clusterDriveMetrics.storageInfo.Backend.StandardSCParity))
    		m.Set(configRRSParity, float64(clusterDriveMetrics.storageInfo.Backend.RRSCParity))
    	}
    
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 12:50:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

            Collection<File> applicationClasspath = processBuilder.getApplicationClasspath();
            Set<File> applicationModulePath = processBuilder.getApplicationModulePath();
            LogLevel logLevel = processBuilder.getLogLevel();
            Set<String> sharedPackages = processBuilder.getSharedPackages();
            Object requestedSecurityManager = execSpec.getSystemProperties().get("java.security.manager");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. buildscripts/disable-root.sh

    if [ ! -f ./mc ]; then
    	wget --quiet -O ./mc https://dl.minio.io/client/mc/release/linux-amd64/./mc &&
    		chmod +x mc
    fi
    
    set +e
    
    export MC_HOST_minioadm=http://minioadmin:minioadmin@localhost:9100/
    ./mc ready minioadm
    
    ./mc ls minioadm/
    
    ./mc admin config set minioadm/ api root_access=off
    
    sleep 3s # let things settle a little
    
    ./mc ls minioadm/
    if [ $? -eq 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

            get() = startParameter.isConfigurationCacheIgnoreInputsInTaskGraphSerialization
    
        val maxProblems: Int
            get() = startParameter.configurationCacheMaxProblems
    
        val ignoredFileSystemCheckInputs: String?
            get() = startParameter.configurationCacheIgnoredFileSystemCheckInputs
    
        val isDebug: Boolean
            get() = startParameter.isConfigurationCacheDebug
    
        val failOnProblems: Boolean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top