Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for WorkType (0.34 sec)

  1. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/CacheManifest.java

        private final String workType;
        private final String identity;
        private final Map<String, List<ManifestEntry>> propertyManifests;
    
        public CacheManifest(OriginMetadata originMetadata, String workType, String identity, Map<String, List<ManifestEntry>> propertyManifests) {
            this.originMetadata = originMetadata;
            this.workType = workType;
            this.identity = identity;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteWorkBuildOperationFiringStep.java

                        .details(new ExecuteWorkDetails(workType, context.getIdentity().getUniqueId()))))
                .orElseGet(() -> delegate.execute(work, context));
        }
    
        private static class ExecuteWorkDetails implements ExecuteWorkBuildOperationType.Details {
    
            private final String workType;
            private final String identity;
    
            public ExecuteWorkDetails(String workType, String identity) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentityCacheStep.java

            private final String workType;
            private final Identity identity;
            private final OriginMetadata originMetadata;
    
            public DefaultExecuteDeferredWorkProgressDetails(
                @Nullable String workType,
                Identity identity,
                OriginMetadata originMetadata
            ) {
                this.workType = workType;
                this.identity = identity;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:30:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-base/src/main/java/org/gradle/caching/internal/origin/OriginMetadataFactory.java

        }
    
        public OriginWriter createWriter(String identity, Class<?> workType, HashCode buildCacheKey, Duration elapsedTime) {
            return outputStream -> {
                Properties properties = new Properties();
                properties.setProperty(BUILD_INVOCATION_ID_KEY, currentBuildInvocationId);
                properties.setProperty(TYPE_KEY, workType.getCanonicalName());
                properties.setProperty(IDENTITY_KEY, identity);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 15:16:00 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentifyStep.java

        }
    
        @Nonnull
        private IdentityContext createIdentityContext(UnitOfWork work, C context) {
            Class<? extends UnitOfWork> workType = work.getClass();
            return operation(operationContext -> {
                    IdentityContext identityContext = createIdentityContextInternal(work, context);
                    Identity identity = identityContext.getIdentity();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidateAction.java

                                .documentedAt(userManual("validation_problems", "disable_caching_by_default"))
                                .severity(WARNING)
                                .details("The " + workType + " author should make clear why a " + workType + " is not cacheable")
                                .solution("Add " + disableCachingAnnotation + "(because = ...)")
                                .solution("Add " + cacheableAnnotation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteStep.java

            this.buildOperationRunner = buildOperationRunner;
        }
    
        @Override
        public Result execute(UnitOfWork work, C context) {
            Class<? extends UnitOfWork> workType = work.getClass();
            UnitOfWork.Identity identity = context.getIdentity();
            return buildOperationRunner.call(new CallableBuildOperation<Result>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    	select {
    	case podUpdates <- struct{}{}:
    	default:
    	}
    
    	if (becameTerminating || wasGracePeriodShortened) && status.cancelFn != nil {
    		klog.V(3).InfoS("Cancelling current pod sync", "pod", klog.KRef(ns, name), "podUID", uid, "workType", status.WorkType())
    		status.cancelFn()
    		return
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. src/runtime/align_runtime_test.go

    	unsafe.Offsetof(heapStatsDelta{}.inWorkBufs),
    	unsafe.Offsetof(lfnode{}.next),
    	unsafe.Offsetof(mstats{}.last_gc_nanotime),
    	unsafe.Offsetof(mstats{}.last_gc_unix),
    	unsafe.Offsetof(workType{}.bytesMarked),
    }
    
    // AtomicVariables is the set of global variables on which we perform
    // 64-bit atomic operations.
    var AtomicVariables = []unsafe.Pointer{
    	unsafe.Pointer(&ncgocall),
    	unsafe.Pointer(&test_z64),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

            });
            // It doesn't matter whether we use cacheable true or false, since none of the warnings depends on the cacheability of the task.
            Class<?> workType = workClass.get();
            TypeValidationContext workValidationContext = validationContext.forType(workType, true);
            validateImplementation(workValidationContext, beforeExecutionState.getImplementation(), "Implementation of ", work);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top