Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 240 for relabel (0.15 sec)

  1. cmd/kubeadm/app/preflight/checks_linux.go

    	return validators
    }
    
    // addIPv6Checks adds IPv6 related checks
    func addIPv6Checks(checks []Checker) []Checker {
    	checks = append(checks,
    		FileContentCheck{Path: ipv6DefaultForwarding, Content: []byte{'1'}},
    	)
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    func addIPv4Checks(checks []Checker) []Checker {
    	checks = append(checks,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/go/types/labels.go

    				recordVarDecl(d.Pos())
    			}
    
    		case *ast.LabeledStmt:
    			// declare non-blank label
    			if name := s.Label.Name; name != "_" {
    				lbl := NewLabel(s.Label.Pos(), check.pkg, name)
    				if alt := all.Insert(lbl); alt != nil {
    					err := check.newError(DuplicateLabel)
    					err.soft = true
    					err.addf(lbl, "label %s already declared", name)
    					err.addAltDecl(alt)
    					err.report()
    					// ok to continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. internal/config/cache/cache.go

    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/minio/internal/config"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/pkg/v3/env"
    	"github.com/tinylib/msgp/msgp"
    )
    
    // Cache related keys
    const (
    	Enable    = "enable"
    	Endpoint  = "endpoint"
    	BlockSize = "block_size"
    
    	EnvEnable    = "MINIO_CACHE_ENABLE"
    	EnvEndpoint  = "MINIO_CACHE_ENDPOINT"
    	EnvBlockSize = "MINIO_CACHE_BLOCK_SIZE"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/telemetrycmd/telemetry.go

    When telemetry is on, telemetry data is written to the local file system
    and periodically sent to https://telemetry.go.dev/. Uploaded data is used to
    help improve the Go toolchain and related tools, and it will be published as
    part of a public dataset.
    
    For more details, see https://telemetry.go.dev/privacy.
    This data is collected in accordance with the Google Privacy Policy
    (https://policies.google.com/privacy).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/software/test-suites-base/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """Base for test suites.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build.
    
    This project is separate from testing-base to avoid needing to be Java 6 compatible.
    """
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":base-services"))
        api(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 950 bytes
    - Viewed (0)
  6. cni/pkg/iptables/testdata/default_ipv6.golden

    iptables -t mangle -A ISTIO_PRERT -p tcp -m tcp --dport 15008 -m mark ! --mark 0x539/0xfff -j TPROXY --on-port 15008 --tproxy-mark 0x111/0xfff
    iptables -t mangle -A ISTIO_PRERT -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    iptables -t mangle -A ISTIO_PRERT ! -d 127.0.0.1/32 -p tcp -m mark ! --mark 0x539/0xfff -j TPROXY --on-port 15006 --tproxy-mark 0x111/0xfff
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 20:16:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	DefaultDBMetricPollInterval = 30 * time.Second
    	DefaultHealthcheckTimeout   = 2 * time.Second
    	DefaultReadinessTimeout     = 2 * time.Second
    )
    
    // TransportConfig holds all connection related info,  i.e. equal TransportConfig means equal servers we talk to.
    type TransportConfig struct {
    	// ServerList is the list of storage servers to connect with.
    	ServerList []string
    	// TLS credentials
    	KeyFile       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/apiclient/wait.go

    			listOpts := metav1.ListOptions{LabelSelector: kvLabel}
    			pods, err := w.client.CoreV1().Pods(metav1.NamespaceSystem).List(context.TODO(), listOpts)
    			if err != nil {
    				fmt.Fprintf(w.writer, "[apiclient] Error getting Pods with label selector %q [%v]\n", kvLabel, err)
    				return false, nil
    			}
    
    			if lastKnownPodNumber != len(pods.Items) {
    				fmt.Fprintf(w.writer, "[apiclient] Found %d Pods for label selector %s\n", len(pods.Items), kvLabel)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModuleStateModificationListener.kt

         * is received. This includes source files being moved or removed, binary content being added, removed, or changed, and modules possibly
         * being removed. Thus, all caches related to module structure, source code, and binaries should be invalidated.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1010 bytes
    - Viewed (0)
  10. pkg/test/framework/components/ambient/waypoint.go

    			_, err = c.Kube().CoreV1().Services(ns.Name()).Update(t.Context(), svc, metav1.UpdateOptions{})
    			return err
    		}
    
    		if err = doLabel(newLabels); err != nil {
    			t.Fatalf("error updating svc %s, err %v", service, err)
    		}
    		t.Cleanup(func() {
    			if err := doLabel(oldLabels); err != nil {
    				scopes.Framework.Errorf("failed resetting waypoint for %s/%s; this will likely break other tests", ns.Name(), service)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top