Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 207 for Applied (0.2 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      DEFAULT = 1;
      // Selects only resources with istio annotation.
      STRICT = 2;
      // No ingress or sync.
      OFF = 3;
    }
    
    // Controls whether Istio policy is applied to Pilot.
    message PilotPolicyConfig {
      // Controls whether Istio policy is applied to Pilot.
      google.protobuf.BoolValue enabled = 1;
    }
    
    // Controls telemetry configuration
    message TelemetryConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    	// Get HNS network information
    	hnsNetworkInfo, err := getNetworkInfo(hns, hnsNetworkName)
    	if err != nil {
    		return nil, err
    	}
    
    	// Network could have been detected before Remote Subnet Routes are applied or ManagementIP is updated
    	// Sleep and update the network to include new information
    	if isOverlay(hnsNetworkInfo) {
    		time.Sleep(10 * time.Second)
    		hnsNetworkInfo, err = hns.getNetworkByName(hnsNetworkName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    // configurations in files with lower numeric prefixes are applied first, followed by higher numeric prefixes.
    // For example, if the drop-in directory contains files named "10-config.conf" and "20-config.conf",
    // the configurations in "10-config.conf" will be applied first, and then the configurations in "20-config.conf" will be applied,
    // potentially overriding the previous values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Kind is the API kind the resources belong to.
      // Required.
      optional string kind = 2;
    }
    
    // ParamRef describes how to locate the params to be used as input to
    // expressions of rules applied by a policy binding.
    // +structType=atomic
    message ParamRef {
      // name is the name of the resource being referenced.
      //
      // One of `name` or `selector` must be set, but `name` and `selector` are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

    import static java.util.Optional.ofNullable;
    
    /**
     * Generates a subclass of the target class to mix-in some DSL behaviour.
     *
     * <ul>
     * <li>For each property, a convention mapping is applied. These properties may have a setter method.</li>
     * <li>For each property whose getter is annotated with {@link Inject}, service instance will be injected instead. These properties may have a setter method and may be abstract.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val settings = Settings()
        settings[Settings.HEADER_TABLE_SIZE] = 0
        val connection = connectWithSettings(client, settings)
    
        // Verify the peer's settings were read and applied.
        assertThat(connection.peerSettings.headerTableSize).isEqualTo(0)
        val writer = connection.writer
        assertThat(writer.hpackWriter.dynamicTableByteCount).isEqualTo(0)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. src/time/time.go

    	}
    	return t.Sub(Now())
    }
    
    // AddDate returns the time corresponding to adding the
    // given number of years, months, and days to t.
    // For example, AddDate(-1, 2, 3) applied to January 1, 2011
    // returns March 4, 2010.
    //
    // Note that dates are fundamentally coupled to timezones, and calendrical
    // periods like days don't have fixed durations. AddDate uses the Location of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied.
    	// If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null.
    	// +optional
    	ParamKind *ParamKind `json:"paramKind,omitempty" protobuf:"bytes,1,rep,name=paramKind"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. cmd/bucket-handlers.go

    // PutBucketObjectLockConfigHandler - PUT Bucket object lock configuration.
    // ----------
    // Places an Object Lock configuration on the specified bucket. The rule
    // specified in the Object Lock configuration will be applied by default
    // to every new object placed in the specified bucket.
    func (api objectAPIHandlers) PutBucketObjectLockConfigHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PutBucketObjectLockConfig")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    // all possible update strategies for the StatefulSet controller.
    // +enum
    type StatefulSetUpdateStrategyType string
    
    const (
    	// RollingUpdateStatefulSetStrategyType indicates that update will be
    	// applied to all Pods in the StatefulSet with respect to the StatefulSet
    	// ordering constraints. When a scale operation is performed with this
    	// strategy, new Pods will be created from the specification version indicated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top