Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,819 for Pulling (0.12 sec)

  1. cmd/kubeadm/app/util/error.go

    // commands.
    func CheckErr(err error) {
    	checkErr(err, fatal)
    }
    
    // preflightError allows us to know if the error is a preflight error or not
    // defining the interface here avoids an import cycle of pulling in preflight into the util package
    type preflightError interface {
    	Preflight() bool
    }
    
    // checkErr formats a given error as a string and calls the passed handleErr
    // func with that string and an exit code.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppCustomHeaderDependencyIntegrationTest.groovy

                    }
                }
    
                // Simulates unzipping headers by copying the contents of a configured directory
                // This is to avoid pulling in an external dependency to do this or investing the
                // effort of writing our own unzip which would be pure yak-shaving for this test.
                import org.gradle.api.artifacts.transform.TransformParameters
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// Value 'all' ignores errors from all checks.
    	// +optional
    	IgnorePreflightErrors []string `json:"ignorePreflightErrors,omitempty"`
    
    	// ImagePullPolicy specifies the policy for image pulling during kubeadm "init" and "join" operations.
    	// The value of this field must be one of "Always", "IfNotPresent" or "Never".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/benchmark.cc

    namespace tensorflow {
    namespace tfcompile {
    namespace benchmark {
    
    // Returns current wall time in micros.
    //
    // TODO(b/33546473): Refactor tensorflow::Env::NowMicros() so that we can re-use
    // the implementation without pulling in all of the Env dependencies.
    static uint64 NowMicros() {
      struct timeval tv;
      gettimeofday(&tv, nullptr);
      return static_cast<uint64>(tv.tv_sec) * 1000000 + tv.tv_usec;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 19:45:29 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/values.yaml

        logging:
          level: info
    
        logAsJson: false
    
        # ImagePullSecrets for all ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/extension/wasmplugin.go

    	// secret, and replace the env variable value with it. When ECDS config update reaches the proxy,
    	// agent will extract out the secret from env variable, use it for image pulling, and strip the
    	// env variable from VM config before forwarding it to envoy.
    	envs := pluginConfig.GetVmConfig().GetEnvironmentVariables().GetKeyValues()
    	secretName := envs[model.WasmSecretEnv]
    	if secretName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_upgrade_patch.txt

    cmp go.mod.orig go.mod
    
    # get -u=patch, with no arguments, should patch-update all dependencies
    # of the package in the current directory, pulling in transitive dependencies
    # and also patching those.
    cp go.mod.orig go.mod
    go get -u=patch
    go list -m all
    stdout '^patch.example.com/direct v1.0.1'
    stdout '^patch.example.com/indirect v1.0.1'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  8. pkg/wasm/convert.go

    	resourceVersion := ""
    	if envs != nil {
    		if sec, found := envs.KeyValues[model.WasmSecretEnv]; found {
    			if sec == "" {
    				*status = fetchFailure
    				return fmt.Errorf("cannot fetch Wasm module %v: missing image pulling secret", configName)
    			}
    			pullSecret = []byte(sec)
    		}
    
    		if ps, found := envs.KeyValues[model.WasmPolicyEnv]; found {
    			if p, found := PullPolicyValues[ps]; found {
    				pullPolicy = p
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom

      </scm>
      <organization>
        <name>Codehaus</name>
        <url>http://www.codehaus.org/</url>
      </organization>
      <modules>
        <!--
    
        Until the bug is fixed in Maven which is pulling in the trunk to the
        appserver build.
        <module>plexus-appserver</module>
        -->
        <module>plexus-archetypes</module>
        <module>plexus-examples</module>
        <module>plexus-components</module>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. pkg/kubelet/util/pod_startup_latency_tracker.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	"k8s.io/utils/clock"
    )
    
    // PodStartupLatencyTracker records key moments for startup latency calculation,
    // e.g. image pulling or pod observed running on watch.
    type PodStartupLatencyTracker interface {
    	ObservedPodOnWatch(pod *v1.Pod, when time.Time)
    	RecordImageStartedPulling(podUID types.UID)
    	RecordImageFinishedPulling(podUID types.UID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top