Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 501 for fanout (0.13 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/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)
  3. internal/hash/reader.go

    }
    
    // Options are optional arguments to NewReaderWithOpts, Options
    // simply converts positional arguments to NewReader() into a
    // more flexible way to provide optional inputs. This is currently
    // used by the FanOut API call mostly to disable expensive md5sum
    // calculation repeatedly under hash.Reader.
    type Options struct {
    	MD5Hex     string
    	SHA256Hex  string
    	Size       int64
    	ActualSize int64
    	DisableMD5 bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu-dynamic-layout-pass.mlir

    // RUN: tf-opt %s -split-input-file -tf-tpu-dynamic-layout-pass | FileCheck %s
    
    // Tests that the pass can transform non-replicated execution.
    
    // CHECK: func @non_replicated(%[[ARG0:.*]]: tensor<*x!tf_type.resource> {tf.device = "/device:CPU:0"}) -> tensor<i32>
    func.func @non_replicated(%arg0: tensor<*x!tf_type.resource> {tf.device = "/device:CPU:0"}) -> tensor<i32> {
      // CHECK: %[[COMPILE:.*]]:2 = "tf_device.launch"
      // CHECK-NEXT: "tf._TPUCompileMlir"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

                println "build dir: " + project.buildDir
                layout.buildDirectory.convention(layout.projectDirectory.dir("out"))
                println "build dir 2: " + project.buildDir
                layout.buildDirectory = layout.projectDirectory.dir("target")
                println "build dir 3: " + project.buildDir
                layout.buildDirectory.convention(layout.projectDirectory.dir("out"))
                println "build dir 4: " + project.buildDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultIvyArtifactRepository.java

            this.layout = layout;
            config.execute(layout);
        }
    
        public AbstractRepositoryLayout getRepositoryLayout() {
            return layout;
        }
    
        @Override
        public IvyArtifactRepositoryMetaDataProvider getResolve() {
            return metaDataProvider;
        }
    
        public void setRepositoryLayout(AbstractRepositoryLayout layout) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionPropertyIntegrationTest.groovy

                        println "value: " + prop.get()
                    }
                }
    
                task show(type: SomeTask) {
                    def layout = project.layout
                    prop = [layout.projectDir.file("in.txt")]
                    doFirst {
                        prop.set([layout.projectDir.file("other.txt")])
                    }
                }
    """
            file("in.txt").createFile()
    
            when:
            fails("show")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyIntegrationTest.groovy

        }
    }
    
    task useFileTypeDsl {
        def custom = project.custom
        def layout = project.layout
        doLast {
            custom.prop = layout.projectDirectory.file("build.gradle")
        }
    }
    
    task useFileProviderDsl {
        def custom = project.custom
        def layout = project.layout
        doLast {
            custom.prop = layout.buildDirectory.file("build.gradle")
        }
    }
    
    task useFileProviderApi {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

                    inputFile = file("input.txt")
                    outputFile = project.layout.buildDirectory.file("untracked-output.txt")
                }
                tasks.register("mySubclassOfUntrackedTask", SubclassOfUntrackedTask) {
                    inputFile = file("input.txt")
                    outputFile = project.layout.buildDirectory.file("subclass-output.txt")
                }
            """)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
Back to top