Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 887 for excluded (0.23 sec)

  1. tools/istio-iptables/pkg/capture/testdata/basic-exclude-nic.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

     * the file from the result entirely.</p>
     *
     * <p>Access to the source file itself after any filters have been added is not a supported operation.
     * </p>
     *
     */
    @HasInternalProtocol
    @NonExtensible
    public interface FileCopyDetails extends FileTreeElement, ContentFilterable, Describable {
        /**
         * Excludes this file from the copy.
         */
        void exclude();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    		mod = modOnly.Mod
    	}
    	return pkgMods, mod, err
    }
    
    // checkAllowedOr is like modload.CheckAllowed, but it always allows the requested
    // and current versions (even if they are retracted or otherwise excluded).
    func (r *resolver) checkAllowedOr(requested string, selected func(string) string) modload.AllowedFunc {
    	return func(ctx context.Context, m module.Version) error {
    		if m.Version == requested {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Returns true iff this test will appear in the XML report.
      bool is_reportable() const {
        // For now, the XML report includes all tests matching the filter.
        // In the future, we may trim tests that are excluded because of
        // sharding.
        return matches_filter_;
      }
    
      // Returns the result of the test.
      const TestResult* result() const { return &result_; }
    
     private:
    #if GTEST_HAS_DEATH_TEST
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			if selector := state.informationsForClaim[index].availableOnNode; selector != nil {
    				if matches := selector.Match(node); !matches {
    					return statusUnschedulable(logger, "excluded by resource class node filter", "pod", klog.KObj(pod), "node", klog.KObj(node), "resourceclassName", claim.Spec.ResourceClassName)
    				}
    			}
    			// Can the builtin controller tell us whether the node is suitable?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. apache-maven/pom.xml

                  <exclude>src/assembly/shared/mvnvalidate</exclude>
                  <exclude>src/assembly/shared/mvnvalidate.cmd</exclude>
                  <exclude>src/assembly/shared/run</exclude>
                  <exclude>src/assembly/shared/run.cmd</exclude>
                </excludes>
              </configuration>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    					// There are many places in the runtime
    					// where we can't do a full traceback.
    					// Ideally we'd list them all, but
    					// barring that allow anything in the
    					// runtime, unless explicitly excluded
    					// above.
    					mayBeLabeled = true
    				}
    			}
    		}
    		errorStack := func(f string, args ...any) {
    			var buf strings.Builder
    			fprintStack(&buf, s.Location)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    The generated values are uniform integers in the range `[minval, maxval)`.
    The lower bound `minval` is included in the range, while the upper bound
    `maxval` is excluded.
    
    The random integers are slightly biased unless `maxval - minval` is an exact
    power of two.  The bias is small for values of `maxval - minval` significantly
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

        version = "1.0"
    
        repositories {
            maven { url "${mavenRepo.uri}" }
        }
        dependencies {
            api("org.gradle:pom-excludes:0.1"){
               exclude group: "org.opensource1", module: "dep1"
               exclude group: "org.opensource2"
               exclude module: "dep2"
            }
        }
        publishing {
            repositories {
                maven { url "${mavenRepo.uri}" }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

            }
    
            buildScript '''
                task sync(type: Sync) {
                    from 'source'
                    into 'dest'
                    preserve {
                        exclude 'someOtherDir/not-preserved.txt'
                        exclude 'somePreservedDir/also-not-preserved.txt'
                    }
                }
            '''.stripIndent()
    
            when:
            run 'sync'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top