Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for speaking (0.21 sec)

  1. guava/src/com/google/common/reflect/TypeToken.java

      /** Returns an instance of type token that wraps {@code type}. */
      public static TypeToken<?> of(Type type) {
        return new SimpleTypeToken<>(type);
      }
    
      /**
       * Returns the raw type of {@code T}. Formally speaking, if {@code T} is returned by {@link
       * java.lang.reflect.Method#getGenericReturnType}, the raw type is what's returned by {@link
       * java.lang.reflect.Method#getReturnType} of the same method object. Specifically:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

      /** Returns an instance of type token that wraps {@code type}. */
      public static TypeToken<?> of(Type type) {
        return new SimpleTypeToken<>(type);
      }
    
      /**
       * Returns the raw type of {@code T}. Formally speaking, if {@code T} is returned by {@link
       * java.lang.reflect.Method#getGenericReturnType}, the raw type is what's returned by {@link
       * java.lang.reflect.Method#getReturnType} of the same method object. Specifically:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

    // node to a predicate based on the predicates its inputs are mapped to.  For
    // instance a Merge(X, Y) node will be mapped to OR(PredicateFor(X),
    // PredicateFor(Y)).  Roughtly speaking, we abstractly interpret each node on
    // the "liveness" domain, where values in the domain represent if a tensor
    // carries a dead signal or not.
    //
    //
    // DEALING WITH CYCLES
    // -------------------
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/time/format.go

    //
    // Note that the [RFC822], [RFC850], and [RFC1123] formats should be applied
    // only to local times. Applying them to UTC times will use "UTC" as the
    // time zone abbreviation, while strictly speaking those RFCs require the
    // use of "GMT" in that case.
    // When using the [RFC1123] or [RFC1123Z] formats for parsing, note that these
    // formats define a leading zero for the day-in-month portion, which is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    		t.Errorf("TLS Cipher Suite = %d; want %d", got, want)
    	}
    }
    
    // Check that an HTTPS client can interpret a particular TLS error
    // to determine that the server is speaking HTTP.
    // See golang.org/issue/11111.
    func TestHTTPSClientDetectsHTTPServer(t *testing.T) {
    	run(t, testHTTPSClientDetectsHTTPServer, []testMode{http1Mode})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	//    ^3
    	//
    	// Let's break this down.
    	//
    	// The first term (marker 1) is everything that contributes to the memory limit and isn't
    	// or couldn't become heap objects. It represents, broadly speaking, non-heap overheads.
    	// One oddity you may have noticed is that we also subtract out heapFree, i.e. unscavenged
    	// memory that may contain heap objects in the future.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    			total += s.Value[i]
    		}
    		// Want d to be at least N*D, but give some wiggle-room to avoid
    		// a test flaking. Set an upper-bound proportional to the total
    		// wall time spent in blockMutexN. Generally speaking, the total
    		// contention time could be arbitrarily high when considering
    		// OS scheduler delays, or any other delays from the environment:
    		// time keeps ticking during these delays. By making the upper
    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. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Note that using a `@ServiceReference` or storing `BuildServiceProvider` in an `@Internal`-annotated property of a task is safe.
    Generally speaking, this limitation makes it impossible to use a `BuildService` to invalidate the configuration cache.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		}
    		state.informationsForClaim[index].allocation = allocation
    		state.informationsForClaim[index].allocationDriverName = driverName
    		// Strictly speaking, we don't need to store the full modified object.
    		// The allocation would be enough. The full object is useful for
    		// debugging and testing, so let's make it realistic.
    		claim = claim.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. src/reflect/type.go

    		for i < len(tag) && tag[i] == ' ' {
    			i++
    		}
    		tag = tag[i:]
    		if tag == "" {
    			break
    		}
    
    		// Scan to colon. A space, a quote or a control character is a syntax error.
    		// Strictly speaking, control chars include the range [0x7f, 0x9f], not just
    		// [0x00, 0x1f], but in practice, we ignore the multi-byte control characters
    		// as it is simpler to inspect the tag's bytes than the tag's runes.
    		i = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top