Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 263 for grabbing (0.14 sec)

  1. src/runtime/chan.go

    		}
    
    		// if a goroutine was put on this queue because of a
    		// select, there is a small window between the goroutine
    		// being woken up by a different case and it grabbing the
    		// channel locks. Once it has the lock
    		// it removes itself from the queue, so we won't see it after that.
    		// We use a flag in the G struct to tell us when someone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    `Project.exec`, `Project.javaexec`, and their likes in settings and init scripts.
    For simpler cases, when grabbing the output of the process is enough,
    link:{groovyDslPath}/org.gradle.api.provider.ProviderFactory.html#org.gradle.api.provider.ProviderFactory:exec(org.gradle.api.Action)[providers.exec()] and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. releasenotes/notes/remove-anyuid-openshift.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    docs:
    - 'https://istio.io/latest/docs/setup/platform-setup/openshift/'
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 297 bytes
    - Viewed (0)
  4. src/runtime/map_test.go

    		m[i] = true
    	}
    	m[GrabBag{f32: 1.0}] = true
    	if !m[GrabBag{f32: 1.0}] {
    		panic("f32 not found")
    	}
    	m[GrabBag{f64: 1.0}] = true
    	if !m[GrabBag{f64: 1.0}] {
    		panic("f64 not found")
    	}
    	m[GrabBag{c64: 1.0i}] = true
    	if !m[GrabBag{c64: 1.0i}] {
    		panic("c64 not found")
    	}
    	m[GrabBag{c128: 1.0i}] = true
    	if !m[GrabBag{c128: 1.0i}] {
    		panic("c128 not found")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/glob_lit_test.bzl

    # Test definitions for Lit, the LLVM test runner.
    #
    # This is reusing the LLVM Lit test runner in the interim until the new build
    # rules are upstreamed.
    # TODO(b/136126535): remove this custom rule.
    """Lit runner globbing test
    """
    
    load("@bazel_skylib//lib:paths.bzl", "paths")
    
    # Default values used by the test runner.
    _default_test_file_exts = ["mlir", ".pbtxt", ".td"]
    _default_driver = "@llvm-project//mlir:run_lit.sh"
    _default_size = "small"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    t",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. cluster/images/etcd/migrate/data_dir_test.go

    	path, err := os.MkdirTemp("", "etcd-migrate-test-")
    	if err != nil {
    		t.Fatalf("Failed to create tmp dir for test: %v", err)
    	}
    	err = os.Chmod(path, 0777)
    	if err != nil {
    		t.Fatalf("Failed to granting permission to tmp dir for test: %v", err)
    	}
    	return path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. src/log/slog/doc.go

    You can also use the [LogValuer] interface to avoid unnecessary work in disabled log
    calls. Say you need to log some expensive value:
    
    	slog.Debug("frobbing", "value", computeExpensiveValue(arg))
    
    Even if this line is disabled, computeExpensiveValue will be called.
    To avoid that, define a type implementing LogValuer:
    
    	type expensive struct { arg int }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. test/typeparam/graph.go

    	22: {exits: [10]int{north: 18, east: 24, down: 23, south: 28, west: 26, nw: 22}},
    	23: {exits: [10]int{east: 22, west: 28, up: 24}},
    	24: {exits: [10]int{ne: 25, down: 23, nw: 28, sw: 26}},
    	25: {exits: [10]int{sw: 24}}, // Grating room (up to Clearing)
    	26: {exits: [10]int{west: 16, sw: 24, east: 28, up: 22, north: 27}},
    	27: {exits: [10]int{south: 26}}, // Dead End
    	28: {exits: [10]int{east: 22, down: 26, south: 23, west: 24}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/README.md

    ```
    
    ##### Node (optional)
    
    Optionally you can also collect per node metrics. This needs to be done on a per server instance.
    The scrape configurations should use all the servers under `targets` so that graphing systems like
    grafana can visualize them for all the nodes
    
    ```yaml
    scrape_configs:
    - job_name: minio-job
      metrics_path: /minio/v2/metrics/node
      scheme: http
      static_configs:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top