Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,029 for bark (0.06 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiContext.java

    import org.gradle.internal.logging.text.StyledTextOutput;
    
    public interface AnsiContext {
        /**
         * Change the ANSI color before executing the specified action. The color is reverted back after the action is executed.
         *
         * @param color the color to use
         * @param action the action to execute on ANSI with the specified color
         * @return the current context
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. docs/en/docs/async.md

    For a more "real life" example of this, imagine a bank.
    
    Up to recently, most of the banks had multiple cashiers πŸ‘¨β€πŸ’ΌπŸ‘¨β€πŸ’ΌπŸ‘¨β€πŸ’ΌπŸ‘¨β€πŸ’Ό and a big line πŸ•™πŸ•™πŸ•™πŸ•™πŸ•™πŸ•™πŸ•™πŸ•™.
    
    All of the cashiers doing all the work with one client after the other πŸ‘¨β€πŸ’Όβ―.
    
    And you have to wait πŸ•™ in the line for a long time or you lose your turn.
    
    You probably wouldn't want to take your crush 😍 with you to run errands at the bank 🏦.
    
    ### Burger Conclusion
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/swift-static-library-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugSwift -> createDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
      compileReleaseSwift -> createRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugSwift -> compileReleaseSwift -> clean [style=invis]
      {rank=same compileDebugSwift compileReleaseSwift clean}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. pkg/util/env/env.go

    // GetEnvAsStringOrFallback returns the env variable for the given key
    // and falls back to the given defaultValue if not set
    func GetEnvAsStringOrFallback(key, defaultValue string) string {
    	if v := os.Getenv(key); v != "" {
    		return v
    	}
    	return defaultValue
    }
    
    // GetEnvAsIntOrFallback returns the env variable (parsed as integer) for
    // the given key and falls back to the given defaultValue if not set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 27 15:25:19 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  5. samples/tcp-echo/README.md

    # TCP Echo Service
    
    This sample runs [TCP Echo Server](src/) as an Istio service. TCP Echo Server
    allows you to connect to it over TCP and echoes back data sent to it along with
    a preconfigured prefix.
    
    ## Usage
    
    To run the TCP Echo Service sample:
    
    1. Install Istio by following the [istio install instructions](https://istio.io/docs/setup/kubernetes/quick-start.html).
    
    1. Start the `tcp-echo-server` service inside the Istio service mesh:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 28 07:41:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * It also deals relatively well when the system wall clock jumps forward by large amounts (this clock will jump with it).
     * It does not deal as well with large jumps back in time.
     * <p>
     * When the system wall clock jumps back in time, this clock will effectively slow down until it is back in sync.
     * All syncing timestamps will be the same as the previously issued timestamp.
     * The rate by which this clock slows, and therefore the time it takes to resync,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. cmd/fieldnamedocscheck/field_name_docs_check.go

    	// The rule is:
    	// 1. Get all back-tick quoted names in the doc
    	// 2. Skip the name which is already found mismatched.
    	// 3. Skip the name whose lowercase is different from the lowercase of tag names,
    	//    because some docs use back-tick to quote field value or nil
    	// 4. Check if the name is different from its tag name
    
    	// TODO: a manual pass adding back-ticks to the doc strings, then update the linter to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 18:32:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/visual-studio-task-graph.dot

      }
    
      {nameDllVisualStudioProject, nameDllVisualStudioFilters, nameLibVisualStudioProject, nameLibVisualStudioFilters} -> visualStudio [dir=back, style=dashed]
      {nameVisualStudioProject, nameVisualStudioFilters} -> visualStudio [dir=back, style=dashed]
      nameVisualStudioSolution -> visualStudio -> openVisualStudio [dir=back]
    
      nameVisualStudioSolution[label=<<i>projectName</i>VisualStudioSolution>]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/container/list/list.go

    // MoveBefore moves element e to its new position before mark.
    // If e or mark is not an element of l, or e == mark, the list is not modified.
    // The element and mark must not be nil.
    func (l *List) MoveBefore(e, mark *Element) {
    	if e.list != l || e == mark || mark.list != l {
    		return
    	}
    	l.move(e, mark.prev)
    }
    
    // MoveAfter moves element e to its new position after mark.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

         *
         * <p>This method is re-entrant, so that an action can call back into this method.</p>
         *
         * <p>Note: this method differs from {@link #withFileLock(Supplier)} in that this method also blocks other threads from this process and all threads from other processes from accessing the cache.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top