Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,492 for excluded (0.43 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      optional string expression = 2;
    }
    
    // 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
    message MatchResources {
      // 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 Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1alpha1/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 Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

        }
    
        public void setGeneratedSourceFolders(Set<Path> generatedSourceFolders) {
            this.generatedSourceFolders = generatedSourceFolders;
        }
    
        /**
         * The directories to be excluded.
         * Must not be null.
         */
        public Set<Path> getExcludeFolders() {
            return excludeFolders;
        }
    
        public void setExcludeFolders(Set<Path> excludeFolders) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. internal/event/target/postgresql.go

    	psqlCreateAccessTable    = `CREATE TABLE %s (event_time TIMESTAMP WITH TIME ZONE NOT NULL, event_data JSONB);`
    
    	psqlUpdateRow = `INSERT INTO %s (key, value) VALUES ($1, $2) ON CONFLICT (key) DO UPDATE SET value = EXCLUDED.value;`
    	psqlDeleteRow = `DELETE FROM %s WHERE key = $1;`
    	psqlInsertRow = `INSERT INTO %s (event_time, event_data) VALUES ($1, $2);`
    )
    
    // Postgres constants
    const (
    	PostgresFormat             = "format"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"containerName": "Restricts the check for exit codes to the container with the specified name. When null, the rule applies to all containers. When specified, it should match one the container or initContainer names...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. pkg/api/v1/resource/helpers.go

    	Reuse v1.ResourceList
    	// InPlacePodVerticalScalingEnabled indicates that the in-place pod vertical scaling feature gate is enabled.
    	InPlacePodVerticalScalingEnabled bool
    	// ExcludeOverhead controls if pod overhead is excluded from the calculation.
    	ExcludeOverhead bool
    	// ContainerFn is called with the effective resources required for each container within the pod.
    	ContainerFn func(res v1.ResourceList, containerType podutil.ContainerType)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 13:58:16 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. pom.xml

                <configuration>
                  <excludes>
                    <exclude>**/.gitattributes</exclude>
                    <exclude>src/test/resources*/**</exclude>
                    <exclude>src/test/projects/**</exclude>
                    <exclude>src/test/remote-repo/**</exclude>
                    <exclude>**/*.odg</exclude>
                    <exclude>**/*.svg</exclude>
                    <exclude>.asf.yaml</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. src/cmd/trace/regions.go

    </table>
    
    <h3 id="ranges">Special ranges</h3>
    
    The table below describes how much of the traced period each goroutine spent in
    certain special time ranges.
    If a goroutine has spent no time in any special time ranges, it is excluded from
    the table.
    For example, how much time it spent helping the GC. Note that these times do
    overlap with the times from the first table.
    In general the goroutine may not be executing in these special time ranges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

        }
    
        public static class ExcludeTaskOption extends ListBuildOption<StartParameterInternal> {
            public ExcludeTaskOption() {
                super(null, CommandLineOptionConfiguration.create("exclude-task", "x", "Specify a task to be excluded from execution."));
            }
    
            @Override
            public void applyTo(List<String> values, StartParameterInternal settings, Origin origin) {
                settings.setExcludedTaskNames(values);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/Invokable.java

       * of a non-static inner class, unlike {@link Constructor#getParameterTypes}, the hidden {@code
       * this} parameter of the enclosing class is excluded from the returned parameters.
       */
      @IgnoreJRERequirement
      public final ImmutableList<Parameter> getParameters() {
        Type[] parameterTypes = getGenericParameterTypes();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top