Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for Executer (0.33 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. 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)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            then:
            executed(':problems', ':moreProblems', ':all')
            configurationCache.assertStateStored()
            postBuildOutputContains("Configuration cache entry stored with 6 problems.")
    
            when:
            configurationCacheFails "$MAX_PROBLEMS_SYS_PROP=2000", 'all'
    
            then:
            executed(':problems', ':moreProblems', ':all')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * method execute in the same order they were passed.</p>
         *
         * <p>If the project has already been evaluated, the action never executes.</p>
         * <p>If you call this method within a <code>beforeEvaluate</code> action, the passed action never executes.</p>
         *
         * @param action the action to execute.
         */
        void beforeEvaluate(Action<? super Project> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. 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 (1)
  6. 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 (1)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        }
        try {
          closingFuture.finishToValueAndCloser(new NoOpValueAndCloserConsumer<>(), executor);
          fail();
        } catch (IllegalStateException expected) {
        }
      }
    
      // Avoid infinite recursion if a closeable's close() method throws RejectedExecutionException and
      // is closed using the direct executor.
      public void testCloseThrowsRejectedExecutionException() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        }
        try {
          closingFuture.finishToValueAndCloser(new NoOpValueAndCloserConsumer<>(), executor);
          fail();
        } catch (IllegalStateException expected) {
        }
      }
    
      // Avoid infinite recursion if a closeable's close() method throws RejectedExecutionException and
      // is closed using the direct executor.
      public void testCloseThrowsRejectedExecutionException() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// ErrPreCreateHook - failed to execute PreCreateHook
    	ErrPreCreateHook = errors.New("PreCreateHookError")
    	// ErrCreateContainer - failed to create container
    	ErrCreateContainer = errors.New("CreateContainerError")
    	// ErrPreStartHook - failed to execute PreStartHook
    	ErrPreStartHook = errors.New("PreStartHookError")
    	// ErrPostStartHook - failed to execute PostStartHook
    	ErrPostStartHook = errors.New("PostStartHookError")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. src/text/template/exec_test.go

    	// Also testing that passing a reflect.Value to tmpl.Execute works.
    	texts := []string{
    		`{{range .}}{{.String}}{{end}}`,
    		`{{with index . 0}}{{.String}}{{end}}`,
    	}
    	for _, text := range texts {
    		tmpl := Must(New("tmpl").Parse(text))
    		var buf strings.Builder
    		err := tmpl.Execute(&buf, reflect.ValueOf([]V{{1}}))
    		if err != nil {
    			t.Fatalf("%s: Execute: %v", text, err)
    		}
    		if buf.String() != "<1>" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top