Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 939 for excluded (0.33 sec)

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

      google.protobuf.BoolValue enableCoreDump = 9;
    
      // Specifies the Istio ingress ports not to capture.
      string excludeInboundPorts = 12;
    
      // Lists the excluded IP ranges of Istio egress traffic that the sidecar captures.
      string excludeIPRanges = 13;
    
      // Image name or path for the proxy, default: "proxyv2".
      //
    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/kubelet/kubelet_test.go

    	defer testKubelet.Cleanup()
    	kubelet := testKubelet.kubelet
    	pods := newTestPods(8)
    	now := metav1.NewTime(time.Now())
    
    	// terminal pods are excluded
    	pods[0].Status.Phase = v1.PodFailed
    	pods[1].Status.Phase = v1.PodSucceeded
    
    	// deleted pod is included unless it's known to be terminated
    	pods[2].Status.Phase = v1.PodRunning
    	pods[2].DeletionTimestamp = &now
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The <<#rel4.8:pom_wildcard_exclusions,honoring of implicit wildcards in Maven POM exclusions>>, which may result in dependencies being excluded that weren't before.
     * A <<#rel4.6:annotation_processor_configuration,change to the way you add Java annotation processors to a project>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    // excluded, or because all non-excluded files were test sources.
    type NoGoError struct {
    	Package *Package
    }
    
    func (e *NoGoError) Error() string {
    	if len(e.Package.IgnoredGoFiles) > 0 {
    		// Go files exist, but they were ignored due to build constraints.
    		return "build constraints exclude all Go files in " + e.Package.Dir
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    * Task has outputs restored from the build cache. See <<build_cache.adoc#build_cache,Build Cache>>.
    
    `SKIPPED`:: *Task did not execute its actions.*
    * Task has been explicitly excluded from the command-line. See <<command_line_interface.adoc#sec:excluding_tasks_from_the_command_line,Excluding tasks from execution>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

       * that the {@link ServiceManager} functions properly even when it is managing no services.
       *
       * <p>The use of this class is considered an implementation detail of ServiceManager and as such
       * it is excluded from {@link #servicesByState}, {@link #startupTimes}, {@link #toString} and all
       * logging statements.
       */
      private static final class NoOpService extends AbstractService {
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    type MatchResources struct {
    	// NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    	// object layer not initialized we return with no decision.
    	if newObjectLayerFn() == nil {
    		return
    	}
    
    	// Disable server-side replication on object prefixes which are excluded
    	// from versioning via the MinIO bucket versioning extension.
    	if !globalBucketVersioningSys.PrefixEnabled(bucket, object) {
    		return
    	}
    
    	replStatus := mopts.ReplicationStatus()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/cache.go

    	// zip is extracted, but if it was deleted (by another program?), we need
    	// to re-calculate it. Note that checkMod will repopulate the ziphash
    	// file if it doesn't exist, but if the module is excluded by checks
    	// through GONOSUMDB or GOPRIVATE, that check and repopulation won't happen.
    	ziphashPath, err := CachePath(ctx, m, "ziphash")
    	if err != nil {
    		return dir, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/module/module.go

    // of a valid import path except that the set of allowed characters is larger:
    // all Unicode letters, ASCII digits, the ASCII space character (U+0020),
    // and the ASCII punctuation characters
    // “!#$%&()+,-.=@[]^_{}~”.
    // (The excluded punctuation characters, " * < > ? ` ' | / \ and :,
    // have special meanings in certain shells or operating systems.)
    //
    // CheckFilePath may be less restrictive in the future, but see the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top