Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 653 for fanout (0.17 sec)

  1. src/internal/trace/testdata/tests/go122-annotations-stress.test

    String id=65
    	data="fanout region4"
    String id=66
    	data="fanout region0"
    String id=67
    	data="fanout region1"
    String id=68
    	data="fanout region2"
    String id=69
    	data="before do"
    String id=70
    	data="do"
    String id=71
    	data="fanout region3"
    String id=72
    	data="before do"
    String id=73
    	data="do"
    String id=74
    	data="fanout region3"
    String id=75
    	data="fanout region0"
    String id=76
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/testprog/annotations-stress.go

    	defer t.End()
    
    	trace.Log(ctx, "log2", "do")
    
    	// Create a region and spawn more tasks and more workers.
    	trace.WithRegion(ctx, "fanout", func() {
    		for i := 0; i < k; i++ {
    			go func(i int) {
    				trace.WithRegion(ctx, fmt.Sprintf("region%d", i), func() {
    					trace.Logf(ctx, "log", "fanout region%d", i)
    					if i == 2 {
    						do(ctx, 0)
    						return
    					}
    				})
    			}(i)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/internal/trace/summary_test.go

    				{Task: 12, Category: "log", Message: "fanout region4"},
    				{Task: 12, Category: "log", Message: "fanout region0"},
    				{Task: 12, Category: "log", Message: "fanout region1"},
    				{Task: 12, Category: "log", Message: "fanout region2"},
    				{Task: 12, Category: "log", Message: "before do"},
    				{Task: 12, Category: "log", Message: "fanout region3"},
    			},
    			goroutines: []trace.GoID{1, 5, 6, 7, 8, 9},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/order_by_dialect.mlir

      "z.a"(%arg0) : (f32) -> ()
      func.return %arg0 : f32
    }
    // CHECK: x.a
    // CHECK: y.a
    // CHECK: z.a
    // CHECK: return
    // CHECK-NOT: call
    // CHECK: }
    
    // -----
    
    // CHECK-LABEL: @fanout
    func.func @fanout(%arg0: f32) -> (f32) attributes {ignore_side_effects_for_testing} {
      %0 = "x.a"(%arg0) : (f32) -> (f32)
      %1 = "y.a"(%0) : (f32) -> (f32)
      %2 = "y.b"(%0) : (f32) -> (f32)
      %3 = "y.c"(%0) : (f32) -> (f32)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	registry quota.Registry
    
    	// TODO these are used together to bucket items by namespace and then batch them up for processing.
    	// The technique is valuable for rollup activities to avoid fanout and reduce resource contention.
    	// We could move this into a library if another component needed it.
    	// queue is indexed by namespace, so that we bundle up on a per-namespace basis
    	queue      *workqueue.Typed[string]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. cmd/bucket-handlers.go

    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    		}
    
    		var b bytes.Buffer
    		if name != "file" {
    			if http.CanonicalHeaderKey(name) == http.CanonicalHeaderKey("x-minio-fanout-list") {
    				dec := json.NewDecoder(part)
    
    				// while the array contains values
    				for dec.More() {
    					var m minio.PutObjectFanOutEntry
    					if err := dec.Decode(&m); err != nil {
    						part.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/adjust-layout.mlir

    func.func @infeed_dequeue_tuple() -> (tensor<1x8x4x4xi32>, tensor<1x100x1xf32>) {
      // CHECK: [[TOKEN:%.*]] = mhlo.create_token : !mhlo.token
      %0 = "mhlo.create_token"() : () -> !mhlo.token
    
      // CHECK:               [[INFEED:%.*]]:3 = "mhlo.infeed"([[TOKEN]]) <{
      // CHECK-SAME{LITERAL}:   infeed_config = "", layout = [[1, 3, 2, 0], [1, 2, 0]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 817 bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

            expect:
            def layout = locator.getLayoutFor(currentDir, tmpDir.testDirectory)
            layout.rootDirectory == currentDir
            layout.settingsDir == currentDir
            layout.settingsFile == new File(currentDir, "settings.gradle") // this is the current behaviour
            layout.buildDefinitionMissing
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/services/kotlin/settings.gradle.kts

    import org.gradle.initialization.layout.BuildLayout
    
    rootProject.name = "services"
    
    // tag::build-layout[]
    println("Root Directory: ${settings.layout.rootDirectory}")
    println("Settings Directory: ${settings.layout.settingsDirectory}")
    // end::build-layout[]
    
    // tag::build-layout-inject[]
    abstract class MyBuildLayoutPlugin @Inject constructor(private val buildLayout: BuildLayout) : Plugin<Settings> {
        override fun apply(settings: Settings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 559 bytes
    - Viewed (0)
  10. src/time/format.go

    			if len(layout) >= i+2 && '1' <= layout[i+1] && layout[i+1] <= '6' {
    				return layout[0:i], std0x[layout[i+1]-'1'], layout[i+2:]
    			}
    			if len(layout) >= i+3 && layout[i+1] == '0' && layout[i+2] == '2' {
    				return layout[0:i], stdZeroYearDay, layout[i+3:]
    			}
    
    		case '1': // 15, 1
    			if len(layout) >= i+2 && layout[i+1] == '5' {
    				return layout[0:i], stdHour, layout[i+2:]
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top