Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for relabel (0.11 sec)

  1. pkg/kubelet/kubelet_pods.go

    		}
    
    		relabelVolume := false
    		// If the volume supports SELinux and it has not been
    		// relabeled already and it is not a read-only volume,
    		// relabel it and mark it as labeled
    		if vol.Mounter.GetAttributes().Managed && vol.Mounter.GetAttributes().SELinuxRelabel && !vol.SELinuxLabeled {
    			vol.SELinuxLabeled = true
    			relabelVolume = true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pilot/pkg/features/telemetry.go

    	EnableTelemetryLabel = env.Register("PILOT_ENABLE_TELEMETRY_LABEL", true,
    		"If true, pilot will add telemetry related metadata to cluster and endpoint resources, which will be consumed by telemetry filter.",
    	).Get()
    
    	EndpointTelemetryLabel = env.Register("PILOT_ENDPOINT_TELEMETRY_LABEL", true,
    		"If true, pilot will add telemetry related metadata to Endpoint resource, which will be consumed by telemetry filter.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceOutOfBlockModificationListener.kt

         * source files being moved or removed. Thus, all caches related to source code and source files should be invalidated.
         *
         * Library modules (including library sources) do not need to be considered modified, so any caches related to library modules and their
         * contents may be kept.
         *
         * @see KotlinModificationTopics
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. gradle.properties

    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    org.gradle.dependency.verification=strict
    # TD related properties
    gradle.internal.testdistribution.writeTraceFile=true
    develocity.internal.testdistribution.writeTraceFile=true
    gradle.internal.testdistribution.queryResponseTimeout=PT20S
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *      <li>encode any related/contained objects by delegating to {@link  org.gradle.internal.serialize.graph.WriteContext#write(java.lang.Object, kotlin.coroutines.Continuation) WriteContext.write(object)} passing the related object.</li>
     *  </ul>
     *  </p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/options.go

    	// a port number is automatically chosen.
    	SecureGRPCAddr string
    }
    
    type InjectionOptions struct {
    	// Directory of injection related config files.
    	InjectionDirectory string
    }
    
    // TLSOptions is optional TLS parameters for Istiod server.
    type TLSOptions struct {
    	// CaCertFile and related are set using CLI flags.
    	CaCertFile      string
    	CertFile        string
    	KeyFile         string
    	TLSCipherSuites []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top