Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 341 for Words (0.04 sec)

  1. tensorflow/compiler/jit/resource_operation_safety_analysis.h

    // the dependencies between them in the TensorFlow program.
    //
    // The restrictions are not transitive: it is fine to put A and C in the same
    // cluster even if the returned set contains (A,B) and (B,C).
    //
    // In other words, if these pairs are seen as edges in an undirected graph of
    // the nodes in `g` then auto-clustering is at least as constrained as the graph
    // coloring problem on this graph.
    //
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/internal/trace/resources.go

    	}
    }
    
    // Goroutine returns the state transition for a goroutine.
    //
    // Transitions to and from states that are Executing are special in that
    // they change the future execution context. In other words, future events
    // on the same thread will feature the same goroutine until it stops running.
    //
    // Panics if d.Resource.Kind is not ResourceGoroutine.
    func (d StateTransition) Goroutine() (from, to GoState) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaToolchainSpec.java

     * <li> when {@link #getLanguageVersion() language version} has been set, optionally followed by setting any other property.
     * </ul>
     * <p>
     * In other words, if a vendor or an implementation are specified, they must be accompanied by the language version.
     * An empty specification in most cases corresponds to the toolchain that runs the current build.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/sync/once.go

    	done atomic.Uint32
    	m    Mutex
    }
    
    // Do calls the function f if and only if Do is being called for the
    // first time for this instance of [Once]. In other words, given
    //
    //	var once Once
    //
    // if once.Do(f) is called multiple times, only the first call will invoke f,
    // even if f has a different value in each invocation. A new instance of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ru.properties

    labels.tooltip_logout=Logout
    labels.advance=Advance
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All these words
    labels.advance_search_phrase_query=Phrase search of these words
    labels.advance_search_should_queries=Any of these words
    labels.advance_search_not_queries=None of these words
    labels.advance_search_filetype=File Type
    labels.advance_search_filetype_default=All Type
    labels.advance_search_filetype_html=HTML
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. src/go/ast/issues_test.go

    ... `, true},
    		// Special comment is indented.
    		//
    		// Strictly, the indent should cause IsGenerated to
    		// yield false, but we cannot detect the indent
    		// without either source text or a token.File.
    		// In other words, the function signature cannot
    		// implement the spec. Let's brush this under the
    		// rug since well-formatted code has no indent.
    		{`// Package p doc comment goes here.
    //
    	// Code generated by gen. DO NOT EDIT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 13:57:33 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutator.groovy

     *
     * Since buildscript classpath instrumentation also uses artifact transforms, we can avoid
     * re-instrumenting jars by applying this mutator.
     *
     * In other words, this mutator can be applied to a scenario that tests performance of artifact transforms,
     * but does not want to test impact of re-instrumenting jars.
     *
     * This mutator could be also moved to the gradle-profiler.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 12:30:06 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. .github/bot_config.yml

    compiler_assignees:
       - joker-eph
       - sanjoy
    # filesystem path
    filesystem_path:
       - tensorflow/c/experimental/filesystem
    # security path
    security_path:
       - tensorflow/security
    # words checklist
    segfault_memory:
       - segfault
       - memory leaks
    # assignees
    filesystem_security_assignee:
       - mihaimaruseac
       
    # Cuda Comment
    cuda_comment: >
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/math/log.go

    //	     	 = 2s + s*R
    //      We use a special Reme algorithm on [0,0.1716] to generate
    //	a polynomial of degree 14 to approximate R.  The maximum error
    //	of this polynomial approximation is bounded by 2**-58.45. In
    //	other words,
    //		        2      4      6      8      10      12      14
    //	    R(z) ~ L1*s +L2*s +L3*s +L4*s +L5*s  +L6*s  +L7*s
    //	(the values of L1 to L7 are listed in the program) and
    //	    |      2          14          |     -58.45
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. architecture/ambient/peer-authentication.md

    proxy and forward the traffic over that connection without presenting a client certificate. Therefore, it is absolutely critical that the waypoint proxy not assume any identity from incoming connections, even if the ztunnel is hairpinning. In other words, all traffic over TLS HBONE tunnels must be considered to be untrusted. From there, traffic is returned to the ztunnel (still over the TLS HBONE tunnel) and forwarded to the destination workload.
    
    The following diagram illustrates the flow...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top