Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for nameFor (0.13 sec)

  1. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      private GeneratedMonitorTest(
          Method method,
          Scenario scenario,
          boolean fair,
          @Nullable Timeout timeout,
          Outcome expectedOutcome) {
        super(nameFor(method, scenario, fair, timeout, expectedOutcome));
        this.method = method;
        this.scenario = scenario;
        this.timeout = timeout;
        this.expectedOutcome = expectedOutcome;
        this.monitor = new Monitor(fair);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      private GeneratedMonitorTest(
          Method method,
          Scenario scenario,
          boolean fair,
          @Nullable Timeout timeout,
          Outcome expectedOutcome) {
        super(nameFor(method, scenario, fair, timeout, expectedOutcome));
        this.method = method;
        this.scenario = scenario;
        this.timeout = timeout;
        this.expectedOutcome = expectedOutcome;
        this.monitor = new Monitor(fair);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/reflect/type.go

    	// x is a bidirectional channel value, T is a channel type,
    	// x's type V and T have identical element types,
    	// and at least one of V or T is not a defined type.
    	return V.ChanDir() == abi.BothDir && (nameFor(T) == "" || nameFor(V) == "") && haveIdenticalType(T.Elem(), V.Elem(), true)
    }
    
    // directlyAssignable reports whether a value x of type V can be directly
    // assigned (using memmove) to a value of type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	if haveIdenticalUnderlyingType(dst, src, false) {
    		return cvtDirect
    	}
    
    	// dst and src are non-defined pointer types with same underlying base type.
    	if dst.Kind() == abi.Pointer && nameFor(dst) == "" &&
    		src.Kind() == abi.Pointer && nameFor(src) == "" &&
    		haveIdenticalUnderlyingType(elem(dst), elem(src), false) {
    		return cvtDirect
    	}
    
    	if implements(dst, src) {
    		if src.Kind() == abi.Interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Namer.java

        /**
         * A comparator implementation based on the names returned by the given namer.
         *
         * @param <T> The type of object that the namer can name
         */
        class Comparator<T> implements java.util.Comparator<T> {
    
            private final Namer<? super T> namer;
    
            public Comparator(Namer<? super T> namer) {
                this.namer = namer;
            }
    
            @Override
            public int compare(T o1, T o2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/namer.go

    	// does not support names.
    	ObjectName(obj runtime.Object) (namespace, name string, err error)
    }
    
    type ContextBasedNaming struct {
    	Namer         runtime.Namer
    	ClusterScoped bool
    }
    
    // ContextBasedNaming implements ScopeNamer
    var _ ScopeNamer = ContextBasedNaming{}
    
    func (n ContextBasedNaming) Namespace(req *http.Request) (namespace string, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_test_err.txt

    import _ "testdep_a"
    
    -- syntaxerr/syntaxerr_x_test.go --
    package syntaxerr
    
    import _ "testdep_b"
    
    -- nameerr/nameerr.go --
    package nameerr
    
    import _ "pkgdep"
    
    -- nameerr/nameerr_i_test.go --
    package nameerr
    
    import (
      _ "testdep_a"
      "testing"
    )
    
    func TestBad(t *testing.B) {}
    
    -- nameerr/nameerr_x_test.go --
    package nameerr_test
    
    import (
      _ "testdep_b"
      "testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 23:08:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

      if (locations.size() < 2 || !isa<NameLoc>(locations.front())) return false;
    
      StringRef op_type_with_suffix =
          mlir::cast<NameLoc>(locations.front()).getName().strref();
      if (!op_type_with_suffix.ends_with(":")) return false;
    
      return absl::c_all_of(locations, [](Location loc) {
        return isa<NameLoc>(loc) ||
               (isa<CallSiteLoc>(loc) &&
                isa<NameLoc>(mlir::cast<CallSiteLoc>(loc).getCallee()));
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/cc/quantization_unit_loc.cc

        : CallSiteLoc(CallSiteLoc::get(
              /*callee=*/NameLoc::get(
                  StringAttr::get(context, ConcatNodeAndFuncName(unit.node_name(),
                                                                 unit.func_name())),
                  /*childLoc=*/NameLoc::get(
                      StringAttr::get(context, unit.op_type()))),
              /*caller=*/NameLoc::get(StringAttr::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/metrics/types_util.cc

              auto new_call = mutable_location->mutable_call()->Add();
              ExtractFileLine(loc, new_call->mutable_source());
            })
            .Case<NameLoc>([&](NameLoc loc) {
              if (!mutable_location->has_type()) {
                mutable_location->set_type(ConverterErrorData::NAMELOC);
              }
    
              auto new_call = mutable_location->mutable_call()->Add();
              new_call->set_name(loc.getName().str());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top