Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 305 for easier (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Task groups and descriptions are used to organize and describe tasks.
    
    Groups :: Task groups are used to categorize tasks. When you run `./gradlew tasks`, tasks are listed under their respective groups, making it easier to understand their purpose and relationship to other tasks. Groups are set using the `group` property.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. hack/update-codegen.sh

            | while read -r F; do \
                echo ':!:'"$(dirname "${F}")"; \
            done
        )
    
    function git_find() {
        # Similar to find but faster and easier to understand.  We want to include
        # modified and untracked files because this might be running against code
        # which is not tracked by git yet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    		// We might notice that an installed binary is up-to-date but still
    		// want to pretend to have run the linker.
    		// Store it under the main package's action ID
    		// to make it easier to find when that's all we have.
    		for _, a1 := range a.Deps {
    			if p1 := a1.Package; p1 != nil && p1.Name == "main" {
    				cache.PutBytes(c, cache.Subkey(a1.actionID, "link-stdout"), a.output)
    				break
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/kube.go

    				Namespace: i.cfg.SystemNamespace,
    			},
    			Data: map[string][]byte{
    				"config": []byte(istioKubeConfig),
    			},
    		}, metav1.CreateOptions{}); err != nil {
    		if errors.IsAlreadyExists(err) { // Allow easier running locally when we run multiple tests in a row
    			if _, err := c.Kube().CoreV1().Secrets(i.cfg.SystemNamespace).Update(context.TODO(), &corev1.Secret{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "istio-kubeconfig",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api.cc

    #include "tensorflow/c/eager/c_api_internal.h"
    #include "tensorflow/c/eager/immediate_execution_operation.h"
    #include "tensorflow/c/eager/immediate_execution_tensor_handle.h"
    #include "tensorflow/c/eager/tfe_context_internal.h"
    #include "tensorflow/c/eager/tfe_op_internal.h"
    #include "tensorflow/c/eager/tfe_tensorhandle_internal.h"
    #include "tensorflow/c/tf_buffer_internal.h"
    #include "tensorflow/c/tf_status.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * invokeAny} which are pending serial execution, even the subset of the tasks that have not yet
       * started execution. It is unclear from the {@code ExecutorService} specification if these should
       * be included, and it's much easier to implement the interpretation that they not be. Finally, a
       * call to {@code shutdown} or {@code shutdownNow} may result in concurrent calls to {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    The `Property` API makes this easier by keeping track of the value of a property and the task that produces the value.
    
    As an example, consider the following plugin with a producer and consumer task which are wired together:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * invokeAny} which are pending serial execution, even the subset of the tasks that have not yet
       * started execution. It is unclear from the {@code ExecutorService} specification if these should
       * be included, and it's much easier to implement the interpretation that they not be. Finally, a
       * call to {@code shutdown} or {@code shutdownNow} may result in concurrent calls to {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    	}
    	fmt.Fprintf(fd, "//line %s:1:1\n", name)
    	fd.Write(newContent)
    
    	// After printing the source tree, add some declarations for the
    	// counters etc. We could do this by adding to the tree, but it's
    	// easier just to print the text.
    	file.addVariables(fd)
    
    	// Emit a reference to the atomic package to avoid
    	// import and not used error when there's no code in a file.
    	if *mode == "atomic" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. doc/go_mem.html

    and less like C and C++, where the meaning of any program with a race
    is entirely undefined, and the compiler may do anything at all.
    Go's approach aims to make errant programs more reliable and easier to debug,
    while still insisting that races are errors and that tools can diagnose and report them.
    </p>
    
    <h2 id="model">Memory Model</h2>
    
    <p>
    The following formal definition of Go's memory model closely follows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top