Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for SetFilter (0.14 sec)

  1. cmd/metacache-server-pool.go

    	o.parseMarker()
    	if o.BaseDir == "" {
    		o.BaseDir = baseDirFromPrefix(o.Prefix)
    	}
    	o.Transient = o.Transient || isReservedOrInvalidBucket(o.Bucket, false)
    	o.SetFilter()
    	if o.Transient {
    		o.Create = false
    	}
    
    	// We have 2 cases:
    	// 1) Cold listing, just list.
    	// 2) Returning, but with no id. Start async listing.
    	// 3) Returning, with ID, stream from list.
    	//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. cmd/metacache-set.go

    func (o *listPathOptions) objectPath(block int) string {
    	return pathJoin(metacachePrefixForID(o.Bucket, o.ID), "block-"+strconv.Itoa(block)+".s2")
    }
    
    func (o *listPathOptions) SetFilter() {
    	switch {
    	case metacacheSharePrefix:
    		return
    	case o.Prefix == o.BaseDir:
    		// No additional prefix
    		return
    	}
    	// Remove basedir.
    	o.FilterPrefix = strings.TrimPrefix(o.Prefix, o.BaseDir)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/README.md

    ```
    kernel/net/ipv4/netfilter/nf_conntrack_ipv4.ko
    kernel/net/netfilter/ipvs/ip_vs.ko
    kernel/net/netfilter/ipvs/ip_vs_rr.ko
    kernel/net/netfilter/ipvs/ip_vs_wrr.ko
    kernel/net/netfilter/ipvs/ip_vs_lc.ko
    kernel/net/netfilter/ipvs/ip_vs_wlc.ko
    kernel/net/netfilter/ipvs/ip_vs_fo.ko
    kernel/net/netfilter/ipvs/ip_vs_ovf.ko
    kernel/net/netfilter/ipvs/ip_vs_lblc.ko
    kernel/net/netfilter/ipvs/ip_vs_lblcr.ko
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestExecutionBuildConfigurationAction.java

            String className = descriptor.getClassName();
            String methodName = descriptor.getMethodName();
            if (className == null && methodName == null) {
                testTask.getFilter().includeTestsMatching("*");
            } else {
                testTask.getFilter().includeTest(className, methodName);
            }
        }
    
        private void collectTestTasks(Context context, Collection<Task> testTasksToRun) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            and:
            0 * target.ensureProjectsConfigured()
            0 * taskSelector._
    
            when:
            filter.filter.isSatisfiedBy(Stub(Task))
    
            then:
            1 * taskSelector.getFilter(_, root.defaultProject, "task", true) >> Stub(Spec)
            0 * taskSelector._
        }
    
        def "lazily resolves an exclude relative path to a task in the target build"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/cc/constant_fold_test.cc

      EXPECT_THAT(depthwise_conv_op, NotNull());
      // The filter of the DepthwiseConv2dNativeOp is expected to be a constant.
      EXPECT_TRUE(isa<TF::ConstOp>(depthwise_conv_op.getFilter().getDefiningOp()));
    }
    
    TEST_F(ConstantFoldingTest, DepthwiseConvWeightNotFoldable) {
      constexpr absl::string_view kModuleCode = R"mlir(
        module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

        }
    
        /**
         * Executes the action against the {@link #getFilter()}.
         *
         * @param action configuration of the test filter
         * @since 1.10
         */
        public void filter(Action<TestFilter> action) {
            action.execute(getFilter());
        }
    
        /**
         * Sets the testExecuter property.
         *
         * @since 4.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <linux/loop.h>
    #include <linux/lwtunnel.h>
    #include <linux/magic.h>
    #include <linux/memfd.h>
    #include <linux/module.h>
    #include <linux/mount.h>
    #include <linux/netfilter/nfnetlink.h>
    #include <linux/netfilter/nf_tables.h>
    #include <linux/netlink.h>
    #include <linux/net_namespace.h>
    #include <linux/nfc.h>
    #include <linux/nsfs.h>
    #include <linux/perf_event.h>
    #include <linux/pps.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

         *
         * @since 4.5
         */
        @Internal
        protected List<String> getNoMatchingTestErrorReasons() {
            List<String> reasons = new ArrayList<String>();
            if (!getFilter().getIncludePatterns().isEmpty()) {
                reasons.add(getFilter().getIncludePatterns() + "(filter.includeTestsMatching)");
            }
            if (!filter.getCommandLineIncludePatterns().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      // 1. Pad the filter to [8, 8, 3, 64]
      // 2. Reshape to [4, 2, 4, 2, 3, 64]
      // 3. Transpose to [4, 4, 2, 2, 3, 64]
      // 4. Reshape to [4, 4, 12, 64]
      auto filter = conv2d.getFilter();
      OpBuilder builder(conv2d);
      builder.setInsertionPoint(conv2d);
      // Book keeping filter information.
      auto filter_shape = mlir::cast<RankedTensorType>(filter.getType()).getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top