Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for Executer (0.23 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                it.assertHasCause("Failed to transform thing2-1.2.jar (group:thing2:1.2) to match attributes {artifactType=jar, color=green, org.gradle.status=release}.")
            }
        }
    
        def 'transform action is re-executed when input artifact changes'() {
            given:
            buildKotlinFile '''
    
    abstract class Summarize : TransformAction<TransformParameters.None> {
    
        @get:InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    				} else {
    					align = 1
    				}
    			}
    			return persistentalloc(size, align, &memstats.other_sys)
    		}
    
    		if inittrace.active && inittrace.id == getg().goid {
    			// Init functions are executed sequentially in a single goroutine.
    			inittrace.allocs += 1
    		}
    	}
    
    	// assistG is the G to charge for this allocation, or nil if
    	// GC is not currently active.
    	assistG := deductAssistCredit(size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

        }
    
        /**
         * Adds services to this container using the given action.
         */
        public void register(Action<? super ServiceRegistration> action) {
            assertMutable();
            action.execute(newRegistration());
        }
    
        private void assertMutable() {
            if (state.get() != State.INIT) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    		if pErr, ok := err.(utiliptables.ParseError); ok {
    			lines := utiliptables.ExtractLines(proxier.iptablesData.Bytes(), pErr.Line(), 3)
    			proxier.logger.Error(pErr, "Failed to execute iptables-restore", "rules", lines)
    		} else {
    			proxier.logger.Error(err, "Failed to execute iptables-restore", "rules", proxier.iptablesData.Bytes())
    		}
    		metrics.IPTablesRestoreFailuresTotal.Inc()
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // An access token contains the security information for a logon session.
    // The system creates an access token when a user logs on, and every
    // process executed on behalf of the user has a copy of the token.
    // The token identifies the user, the user's groups, and the user's
    // privileges. The system uses the token to control access to securable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            GeneratedClassImpl generatedClass = generatedClasses.getIfPresent(type);
            if (generatedClass == null) {
                // It is possible that multiple threads will execute this branch concurrently, when the type is missing. However, the contract for `get()` below will ensure that
                // only one thread will actually generate the implementation class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        // While: since while condition cannot write, any resource written in the
        //   while body will need to be read as well in case the while body is never
        //   executed.
        // Both cases are handled by the condition below.
        if (info.is_written && !info.is_written_all) info.is_read = true;
    
        // Allocate a result index for written resources that don't have one.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// * Prevent starvation of watch opened by cacher, by moving it to separate Watch RPC than watch request that bypass cacher.
    		// * Ensure that progress notification requests are executed on the same Watch RPC as their watch, which is required for it to work.
    		contextMetadata = metadata.New(map[string]string{"source": "cache"})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    			argv = append(argv, "-Wl,-z,nobtcfi")
    		}
    		if ctxt.Arch.InFamily(sys.ARM64) {
    			// Disable execute-only on openbsd/arm64 - the Go arm64 assembler
    			// currently stores constants in the text section rather than in rodata.
    			// See issue #59615.
    			argv = append(argv, "-Wl,--no-execute-only")
    		}
    	case objabi.Hwindows:
    		if windowsgui {
    			argv = append(argv, "-mwindows")
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    conf 'org.test:root3:1.0'
    
                    components.all(AlignGroup.class)
                }
    
                class AlignGroup implements ComponentMetadataRule {
                    void execute(ComponentMetadataContext ctx) {
                        ctx.details.with { it ->
                            if (it.getId().getGroup().startsWith("org.aligned")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top