Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 459 for ACCEPT (0.11 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

        private static FileSystemSnapshot filterSnapshot(FileSystemSnapshot root, BiPredicate<FileSystemLocationSnapshot, Boolean> predicate) {
            SnapshotFilteringVisitor visitor = new SnapshotFilteringVisitor(predicate);
            root.accept(visitor);
    
            // Are all file snapshots after execution accounted for as new entries?
            if (visitor.hasBeenFiltered()) {
                return CompositeFileSystemSnapshot.of(visitor.getNewRoots());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelector.java

     * none is set, it uses the default one of the ivy instance set through setIvy(). If neither a
     * latest strategy nor a ivy instance is set, an IllegalStateException will be thrown when calling
     * accept(). Note that it can't work with latest time strategy, cause no time is known for the
     * limits of the range. Therefore only purely revision based LatestStrategy can be used.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. pkg/util/iptables/iptables_test.go

    		}
    	}
    }
    
    func TestCheckRuleWithoutCheckPresent(t *testing.T) {
    	iptablesSaveOutput := `# Generated by iptables-save v1.4.7 on Wed Oct 29 14:56:01 2014
    *nat
    :PREROUTING ACCEPT [2136997:197881818]
    :POSTROUTING ACCEPT [4284525:258542680]
    :OUTPUT ACCEPT [5901660:357267963]
    -A PREROUTING -m addrtype --dst-type LOCAL -m mark --mark 0x00004000/0x00004000 -j DOCKER
    COMMIT
    # Completed on Wed Oct 29 14:56:01 2014`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

            1 * initializationAction.initialize(lock)
            1 * action.run()
            _ * lock.mode >> Exclusive
            _ * lock.state
            0 * _._
    
            when:
            contentionAction.accept({} as FileLockReleasedSignal)
    
            then:
            1 * lock.close()
    
            when:
            access.useCache(action)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

                collector.accept(newDependency(identifier, null, null, null, Collections.emptySet(), false));
            }
    
            private void convertImportDependencyConstraint(ModuleDependency dependency, Consumer<MavenDependency> collector) {
                ResolvedCoordinates identifier = resolveDependency(dependency, true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    if (versionConstraint.accepts(version)) {
                        accept = true;
                    }
                } else if (!versionConstraint.canBeStable()) {
                    accept = false;
                    break;
                }
            }
            if (!accept) {
                markDeniedDynamicVersions(selected);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

            given:
            1 * workPreparer.newExecutionPlan() >> executionPlan
            1 * workPreparer.populateWorkGraph(gradleMock, executionPlan, _) >> { GradleInternal gradle, ExecutionPlan executionPlan, Consumer consumer -> consumer.accept(executionPlan) }
            1 * buildModelController.scheduleRequestedTasks(null, executionPlan) >> { throw failure }
    
            when:
            def controller = this.controller()
            controller.prepareToScheduleTasks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/net/net.go

    //
    // Multiple goroutines may invoke methods on a Listener simultaneously.
    type Listener interface {
    	// Accept waits for and returns the next connection to the listener.
    	Accept() (Conn, error)
    
    	// Close closes the listener.
    	// Any blocked Accept operations will be unblocked and return errors.
    	Close() error
    
    	// Addr returns the listener's network address.
    	Addr() Addr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

        }
    
        private static class CacheInitializer implements Consumer<PersistentCache> {
            private final WorkerClassRemapper remapper = new WorkerClassRemapper();
    
            @Override
            public void accept(PersistentCache cache) {
                try {
                    File jarFile = jarFile(cache);
                    LOGGER.debug("Generating worker process classes to {}.", jarFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

                    finalizer.getGroup().onNodeStart(finalizer, this);
                }
            }
            nodeStartAction.accept(this);
        }
    
        public void finishExecution(Consumer<Node> completionAction) {
            assert state == ExecutionState.EXECUTING;
            state = ExecutionState.EXECUTED;
            completionAction.accept(this);
        }
    
        public void markFailedDueToDependencies(Consumer<Node> completionAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
Back to top