Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 919 for ioperation (0.21 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemReporter.java

            action.execute(defaultProblemBuilder);
            return defaultProblemBuilder.build();
        }
    
        /**
         * Reports a problem.
         * <p>
         * The current build operation is used as the operation identifier.
         * If there is no current build operation, the problem is not reported.
         *
         * @param problem The problem to report.
         */
        @Override
        public void report(Problem problem) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            def resolveArtifactB = events.operation("Resolve artifact projectB.jar (group:projectB:1.0)")
            def resolveArtifactC = events.operation("Resolve artifact projectC.jar (group:projectC:1.5)")
            def resolveArtifactD = events.operation("Resolve artifact projectD.jar (group:projectD:2.0-SNAPSHOT)")
            def downloadBMetadata = events.operation("Download ${server.uri}${projectB.pomPath}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

        }
    
        public CompositeOperation<Operation> getProjectConfiguration() {
            List<Operation> operations = new ArrayList<>();
            for (ProjectProfile projectProfile : projects.values()) {
                operations.add(projectProfile.getConfigurationOperation());
            }
            operations = CollectionUtils.sort(operations, Operation.slowestFirst());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            }
    
            then:
            events.tasks.size() == 3
    
            def runTasks = events.operation("Run tasks")
    
            def t1 = events.operation("Task :para1")
            def t2 = events.operation("Task :para2")
            def t3 = events.operation("Task :parallelTasks")
    
            t1.parent == runTasks
            t2.parent == runTasks
            t3.parent == runTasks
    
            cleanup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. fastapi/applications.py

                Doc(
                    """
                    Custom operation ID to be used by this *path operation*.
    
                    By default, it is generated automatically.
    
                    If you provide a custom operation ID, you need to make sure it is
                    unique for the whole API.
    
                    You can customize the
                    operation ID generation with the parameter
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/CacheableTaskProgressEventsCrossVersionSpec.groovy

            then:
            readingOperations(pullFromCacheResults).size() == maybeIncludeLocalBuildOperations(1)
        }
    
        private static List<Operation> writingOperations(ProgressEvents pushToCacheEvents) {
            def pushTaskOperation = pushToCacheEvents.operation("Task :cacheable")
            def writingOperations = pushTaskOperation.descendants {
                it.descriptor.displayName =~ /Store entry .+ in (local|remote) build cache/ ||
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

            tfg::SortTopologically(&block);
          }
        }
      }
    
      // Version information is embedded in graph operation in TFG. In TFE, it's
      // embedded in the module operation.
      for (auto &op : module.getBodyRegion().getOps()) {
        auto graph = dyn_cast<tfg::GraphOp>(op);
        if (!graph) continue;
        Builder b(&context);
        auto producer = b.getNamedAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonFactoryTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import org.gradle.internal.operations.BuildOperationContext
    import org.gradle.internal.operations.BuildOperationRef
    import org.gradle.internal.operations.BuildOperationRunner
    import spock.lang.Specification
    import spock.lang.Subject
    
    class WorkerDaemonFactoryTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/sync/atomic/doc.go

    //
    // The add operation, implemented by the AddT functions, is the atomic
    // equivalent of:
    //
    //	*addr += delta
    //	return *addr
    //
    // The load and store operations, implemented by the LoadT and StoreT
    // functions, are the atomic equivalents of "return *addr" and
    // "*addr = val".
    //
    // In the terminology of [the Go memory model], if the effect of
    // an atomic operation A is observed by atomic operation B,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route.go

    	}
    
    	authority := ""
    	if in.Headers != nil {
    		operations := TranslateHeadersOperations(in.Headers)
    		out.RequestHeadersToAdd = operations.RequestHeadersToAdd
    		out.ResponseHeadersToAdd = operations.ResponseHeadersToAdd
    		out.RequestHeadersToRemove = operations.RequestHeadersToRemove
    		out.ResponseHeadersToRemove = operations.ResponseHeadersToRemove
    		authority = operations.Authority
    	}
    
    	var hostnames []host.Name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top