Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 396 for executors (0.18 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    // supports float types. tf.round with integer input type will become an
    // identity op, so we will never face an mhlo.floor with an integer input type.
    // The pattern matched executes the following computation:
    // frac = x - floor(x)
    // to_even = (floor(x) - 2 * floor(0.5 * x)) == 1
    // if frac > 0.5 || (frac == 0.5 && to_even)
    //   return floor(x) + 1
    // else
    //   return floor(x)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

            JavaToolchainResolverRegistry toolchainResolverRegistry,
            SecureFileDownloader downloader,
            JdkCacheDirectory cacheDirProvider,
            ProviderFactory factory,
            BuildOperationRunner executor,
            BuildPlatform buildPlatform
        ) {
            this.toolchainResolverRegistry = (JavaToolchainResolverRegistryInternal) toolchainResolverRegistry;
            this.downloader = downloader;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

                owner.with {
                    m2.execute(executer)
                    m2.mavenRepo().module("thing", "lib1", "2.1").publishWithChangedContent()
                }
            }
    
            @Override
            void publishWithDifferentDependencies(AbstractIntegrationSpec owner) {
                owner.with {
                    m2.execute(executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

                        System.out.println("Hello World with Changes!");
                    }
                }
            """
    
        def cacheOperations = new BuildCacheOperationFixtures(executer, temporaryFolder)
    
        def setup() {
            setupProjectInDirectory(testDirectory)
        }
    
        private static void setupProjectInDirectory(TestFile dir, String sourceDir = "main") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.TestBuildCache
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.internal.Actions
    import org.gradle.internal.reflect.validation.ValidationMessageChecker
    import org.gradle.test.precondition.Requires
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_fr.properties

    labels.scheduledjob_target	=	Cible
    labels.scheduledjob_status	=	État
    labels.scheduledjob_cronExpression	=	Tableau
    labels.scheduledjob_scriptType	=	Executor
    labels.scheduledjob_scriptData	=	Script
    labels.scheduledjob_jobLogging	=	Logging
    labels.scheduledjob_crawler	=	Tâche d'exploration
    labels.scheduledjob_running	=	Éxecuter
    labels.scheduledjob_active	=	Actif
    labels.scheduledjob_nojob	=	Inactif
    labels.scheduledjob_button_start	=	Commencez maintenant.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/certs_test.go

    		// Create temp folder for the test case
    		tmpdir := testutil.SetupTempDir(t)
    		defer os.RemoveAll(tmpdir)
    
    		// executes setup func (if necessary)
    		if test.setupFunc != nil {
    			if err := test.setupFunc(tmpdir); err != nil {
    				t.Errorf("error executing setupFunc: %v", err)
    				continue
    			}
    		}
    
    		// executes create func
    		err := writeCertificateAuthorityFilesIfNotExist(tmpdir, "dummy", caCert, caKey)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    	// Starts running the reconciliation loop which executes periodically, checks
    	// if volumes that should be attached are attached and volumes that should
    	// be detached are detached. If not, it will trigger attach/detach
    	// operations to rectify.
    	Run(ctx context.Context)
    }
    
    // NewReconciler returns a new instance of Reconciler that waits loopPeriod
    // between successive executions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

            then:
            thrown(UnknownPluginException)
        }
    
        def "executes action for plugin with given id"() {
            def plugins = []
            container.apply(plugin1Class)
    
            when:
            container.withId("plugin") { plugins << it }
    
            then:
            plugins[0].class == plugin1Class
        }
    
        def "executes action when plugin with given id is added later"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.util.internal.ToBeImplemented
    import spock.lang.Ignore
    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.executer.TaskOrderSpecs.any
    import static org.gradle.integtests.fixtures.executer.TaskOrderSpecs.exact
    
    class FinalizerTaskIntegrationTest extends AbstractIntegrationSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top