Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for executors (0.16 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                executer.usingInitScript(initScript);
            }
            executer.withTasks(tasks);
            executer.withArguments(args);
            executer.withEnvironmentVars(environmentVars);
            executer.usingExecutable(executable);
            if (quiet) {
                executer.withQuietLogging();
            }
            if (taskList) {
                executer.withTaskList();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        @CheckForNull // null only for TOMBSTONE
        final Executor executor;
    
        // writes to next are made visible by subsequent CAS's on the listeners field
        @CheckForNull Listener next;
    
        Listener(Runnable task, Executor executor) {
          this.task = task;
          this.executor = executor;
        }
    
        Listener() {
          this.task = null;
          this.executor = null;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        @CheckForNull // null only for TOMBSTONE
        final Executor executor;
    
        // writes to next are made visible by subsequent CAS's on the listeners field
        @CheckForNull Listener next;
    
        Listener(Runnable task, Executor executor) {
          this.task = task;
          this.executor = executor;
        }
    
        Listener() {
          this.task = null;
          this.executor = null;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            given:
            serviceImplementation()
            adhocTaskUsingUndeclaredService(1)
            enableStableConfigurationCache()
            executer.expectDocumentedDeprecationWarning(
                "Build service 'counter' is being used by task ':broken' without the corresponding declaration via 'Task#usesService'. " +
                    "This behavior has been deprecated. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    	t                 *testing.T
    	objAPITest        objAPITestType
    	endpoints         []string
    	init              func()
    	makeBucketOptions MakeBucketOptions
    }
    
    // ExecObjectLayerAPITest - executes object layer API tests.
    // Creates single node and Erasure ObjectLayer instance, registers the specified API end points and runs test for both the layers.
    func ExecObjectLayerAPITest(args ExecObjectLayerAPITestArgs) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            'Task.taskDependencies' | 'taskDependencies'
        }
    
        def "reports build listener registration on #registrationPoint"() {
    
            given:
            buildFile << code
    
            when:
            executer.noDeprecationChecks()
            configurationCacheFails 'help'
    
            then:
            outputContains("Configuration cache entry discarded with 1 problem.")
            problems.assertFailureHasProblems(failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        @Rule
        HttpServer httpServer = new HttpServer()
        def remoteRepo = new MavenHttpRepository(httpServer, mavenRepo)
    
        def setup() {
            // So that dependency resolution results from previous executions do not interfere
            requireOwnGradleUserHomeDir()
        }
    
        def setupBuildWithEachDependencyType() {
            httpServer.start()
            taskTypeWithOutputFileProperty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                problems,
                                Severity.ERROR,
                                Version.V20,
                                prefix + prefix2 + "[" + plugin.getKey() + "].executions.execution.id",
                                null,
                                "must be unique but found duplicate execution with id " + exec.getId(),
                                exec);
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. .bazelrc

    # Make Bazel not try to probe the host system for a C++ toolchain.
    build:rbe_base --config=resultstore
    build:rbe_base --repo_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1
    build:rbe_base --define=EXECUTOR=remote
    build:rbe_base --jobs=800
    build:rbe_base --remote_executor=grpcs://remotebuildexecution.googleapis.com
    build:rbe_base --remote_timeout=3600
    build:rbe_base --spawn_strategy=remote,worker,standalone,local
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		Tty:         tty,
    	}
    	resp, err := m.runtimeService.Attach(ctx, req)
    	if err != nil {
    		return nil, err
    	}
    	return url.Parse(resp.Url)
    }
    
    // RunInContainer synchronously executes the command in the container, and returns the output.
    func (m *kubeGenericRuntimeManager) RunInContainer(ctx context.Context, id kubecontainer.ContainerID, cmd []string, timeout time.Duration) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top