Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,698 for checkSeq (0.61 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    			expectEsimatedCost: func(c checker.CostEstimate) checker.CostEstimate {
    				return checker.CostEstimate{Min: c.Min + 5, Max: c.Max + 9}
    			},
    			expectRuntimeCost: func(c uint64) uint64 { return c + 5 },
    		},
    		{
    			ops: []string{".containsCIDR(cidr('192.168.0.0/16'))"},
    			expectEsimatedCost: func(c checker.CostEstimate) checker.CostEstimate {
    				return checker.CostEstimate{Min: c.Min + 5, Max: c.Max + 9}
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/preflight/checks_other.go

    // No-op for Darwin (MacOS), Windows.
    func addIPv6Checks(checks []Checker) []Checker {
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    // No-op for Darwin (MacOS), Windows.
    func addIPv4Checks(checks []Checker) []Checker {
    	return checks
    }
    
    // addSwapCheck adds a swap check
    // No-op for Darwin (MacOS), Windows.
    func addSwapCheck(checks []Checker) []Checker {
    	return checks
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 23 07:37:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjectsTest.groovy

            1 * checker.isDependent(child1, "testRuntime", child2) >> false
            1 * checker.isDependent(child1, "testRuntime", child3) >> true
            1 * context.add(child3.tasks["buildDependents"])
            0 * _
        }
    
        def "knows which tasks come from dependent projects with specific configuration"() {
            def checker = new TasksFromDependentProjects.TaskDependencyChecker()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            var currentSelectedTag = $(this).val();
            var checked = $(this).prop('checked');
    
            $("#filter-popover .form-check-input[value*='" + currentSelectedTag + "']").toArray().forEach(checkbox => checked ? checkbox.setAttribute('checked', 'true') : checkbox.removeAttribute('checked'));
    
            var selectedTags = $('.popover-body .form-check-input').toArray().filter(checkbox => checkbox.checked).map(checkbox => checkbox.value);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

    import static com.google.common.base.Preconditions.checkNotNull;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.Map;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link UnicodeEscaper} that uses an array to quickly look up replacement characters for a given
     * code point. An additional safe range is provided that determines whether code points without
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

    import java.util.concurrent.Callable;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Imposes a time limit on method calls.
     *
     * @author Kevin Bourrillion
     * @author Jens Nyman
     * @since 1.0
     */
    @DoNotMock("Use FakeTimeLimiter")
    @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    "checker". For example, the printf checker reports mistakes in
    fmt.Printf format strings.
    
    A "modular" analysis is one that inspects one package at a time but can
    save information from a lower-level package and use it when inspecting a
    higher-level package, analogous to separate compilation in a toolchain.
    The printf checker is modular: when it discovers that a function such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/gradients/custom_gradient_test.cc

        Status s = StatusFromTF_Status(status.get());
        CHECK_EQ(errors::OK, s.code()) << s.message();
      }
    };
    
    class PassThroughGradientFunction : public GradientFunction {
     public:
      Status Compute(AbstractContext* ctx,
                     absl::Span<AbstractTensorHandle* const> grad_outputs,
                     absl::Span<AbstractTensorHandle*> grad_inputs) override {
        CHECK_EQ(grad_outputs.size(), 1);
        CHECK_EQ(grad_inputs.size(), 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/tests/variable_test.cc

        Status s = tensorflow::StatusFromTF_Status(status.get());
        CHECK_EQ(tensorflow::errors::OK, s.code()) << s.message();
    
        // Set the runtime impl, Core RT vs TFRT.
        AbstractContext* ctx_raw = nullptr;
        s = BuildImmediateExecutionContext(UseTfrt(), &ctx_raw);
        CHECK_EQ(tensorflow::errors::OK, s.code()) << s.message();
        ctx_.reset(ctx_raw);
      }
    };
    
    template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    	}
    	return 1
    }
    
    func (l *CostEstimator) sizeEstimate(t checker.AstNode) checker.SizeEstimate {
    	if sz := t.ComputedSize(); sz != nil {
    		return *sz
    	}
    	if sz := l.EstimateSize(t); sz != nil {
    		return *sz
    	}
    	return checker.SizeEstimate{Min: 0, Max: math.MaxUint64}
    }
    
    func (l *CostEstimator) listElementNode(list checker.AstNode) checker.AstNode {
    	if params := list.Type().Parameters(); len(params) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top