Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 219 for somme (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    How does an incremental build work? How can you make sure your tasks support running incrementally? Let’s take a look.
    
    [[sec:task_inputs_outputs]]
    == Task inputs and outputs
    
    In the most common case, a task takes some inputs and generates some outputs.
    We can consider the process of Java compilation as an example of a task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Both methods return `FileTree` instances that you can then use in the same way as normal file trees.
    For example, you can extract some or all of the files of an archive by copying its contents to some directory on the file system.
    Or you can merge one archive into another.
    
    Here are some simple examples of creating archive-based file trees:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    // optimizations run by PartitionedCall can mutate the cluster arbitrarily,
    // dropping the kXlaAlreadyClustered attributes from all nodes in the process.
    // The correct fix is to use the ConfigProto to pass in some sort of flag into
    // the PartitionedCall kernel that tells it to not rerun auto-clustering on the
    // cluster.
    const char* kXlaAlreadyClustered = "_XlaAlreadyClustered";
    
    class MarkForCompilationPassImpl {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/net/http/httputil/reverseproxy_test.go

    	const fakeConnectionToken = "X-Fake-Connection-Token"
    	const backendResponse = "I am the backend"
    
    	// someConnHeader is some arbitrary header to be declared as a hop-by-hop header
    	// in the Request's Connection header.
    	const someConnHeader = "X-Some-Conn-Header"
    
    	backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if c := r.Header.Get("Connection"); c != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_HAS_GLOBAL_STRING  - Define it to 1/0 to indicate that ::string
    //                              is/isn't available (some systems define
    //                              ::string, which is different to std::string).
    //   GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::string
    //                              is/isn't available (some systems define
    //                              ::wstring, which is different to std::wstring).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    		// got to the right point in the trace.
    		//
    		// Note that we also don't advance here if we have a P and we're in a syscall.
    		return curCtx, false, nil
    	}
    	// We can advance this P. Check some invariants.
    	//
    	// We might have a goroutine if a goroutine is exiting a syscall.
    	reqs := event.SchedReqs{Thread: event.MustHave, Proc: event.MustNotHave, Goroutine: event.MayHave}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    // has not been met.
    //
    // The goals are updated after each GC.
    //
    // Synchronous scavenging happens for one of two reasons: if an allocation would
    // exceed the memory limit or whenever the heap grows in size, for some
    // definition of heap-growth. The intuition behind this second reason is that the
    // application had to grow the heap because existing fragments were not sufficiently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/net/http/client_test.go

    // when not empty.
    //
    // tls.Config.ServerName (non-empty, set to "example.com") takes
    // precedence over "some-other-host.tld" which previously incorrectly
    // took precedence. We don't actually connect to (or even resolve)
    // "some-other-host.tld", though, because of the Transport.Dial hook.
    //
    // The httptest.Server has a cert with "example.com" as its name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    	if err != nil {
    		return nil, err
    	}
    	requirements = rs
    	return mg, err
    }
    
    // expandGraph loads the complete module graph from rs.
    //
    // If the complete graph reveals that some root of rs is not actually the
    // selected version of its path, expandGraph computes a new set of roots that
    // are consistent. (With a pruned module graph, this may result in upgrades to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `TaskContainer.remove()` now actually removes the given task — some plugins may have accidentally relied on the old behavior.
     * <<#rel4.8:pom_wildcard_exclusions,Gradle now honors implicit wildcards in Maven POM exclusions>>.
     * The Kotlin DSL now respects JSR-305 package annotations.
    +
    This will lead to some types annotated according to JSR-305 being treated as nullable where they were treated as non-nullable before.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top