Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,057 for ACCEPT (0.13 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilderTest.groovy

            includedBuildState2.mutableModel >> build2
    
            buildRegistry.visitBuilds(_) >> { Consumer consumer ->
                consumer.accept(rootBuildState)
                consumer.accept(includedBuildState1)
                consumer.accept(includedBuildState2)
            }
    
            def builder = new GradleBuildBuilder(buildRegistry)
    
            expect:
            def model = builder.create(rootBuildState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/net/fd_fake.go

    func (fd *netFD) init() error {
    	return fd.pfd.Init(fd.net, true)
    }
    
    func (fd *netFD) name() string {
    	return "unknown"
    }
    
    func (fd *netFD) accept() (netfd *netFD, err error) {
    	if fd.fakeNetFD != nil {
    		return fd.fakeNetFD.accept(fd.laddr)
    	}
    	d, _, errcall, err := fd.pfd.Accept()
    	if err != nil {
    		if errcall != "" {
    			err = wrapSyscallError(errcall, err)
    		}
    		return nil, err
    	}
    	netfd = newFD("tcp", d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MissingFileSnapshot.java

            return other instanceof MissingFileSnapshot;
        }
    
        @Override
        public void accept(FileSystemLocationSnapshotVisitor visitor) {
            visitor.visitMissing(this);
        }
    
        @Override
        public <T> T accept(FileSystemLocationSnapshotTransformer<T> transformer) {
            return transformer.visitMissing(this);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. releasenotes/notes/47705.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
    - 47696
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 18:10:52 UTC 2023
    - 177 bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RegularFileSnapshot.java

            }
            return contentHash.equals(((RegularFileSnapshot) other).contentHash);
        }
    
        @Override
        public void accept(FileSystemLocationSnapshotVisitor visitor) {
            visitor.visitRegularFile(this);
        }
    
        @Override
        public <T> T accept(FileSystemLocationSnapshotTransformer<T> transformer) {
            return transformer.visitRegularFile(this);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. cmd/post-policy_test.go

    	// Add the bucket condition, only accept buckets equal to the one passed.
    	bucketConditionStr := fmt.Sprintf(`["eq", "$bucket", "%s"]`, bucketName)
    	// Add the key condition, only accept keys equal to the one passed.
    	keyConditionStr := fmt.Sprintf(`["eq", "$key", "%s/upload.txt"]`, objectKey)
    	// Add content length condition, only accept content sizes of a given length.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java

            for (final Map.Entry<Thread, StackTraceElement[]> entry : Thread.getAllStackTraces().entrySet()) {
                writer.accept("Thread: " + entry.getKey());
                final StackTraceElement[] trace = entry.getValue();
                for (final StackTraceElement element : trace) {
                    writer.accept("\tat " + element);
                }
            }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccess.java

                    try {
                        if (initAction.requiresInitialization(fileLock)) {
                            fileLock.writeFile(() -> initAction.initialize(fileLock));
                        }
                        onOpen.accept(fileLock);
                    } catch (Exception e) {
                        fileLock.close();
                        fileLock = null;
                        throw UncheckedException.throwAsUncheckedException(e);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/build.gradle

    dependencies {
        components {
            all(StatusRule)
        }
    }
    
    // tag::reject-version-1-1[]
    configurations {
        rejectConfig {
            resolutionStrategy {
                componentSelection {
                    // Accept the highest version matching the requested version that isn't '1.5'
                    all { ComponentSelection selection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/build.gradle.kts

            all(StatusRule::class.java)
        }
    }
    
    // tag::reject-version-1-1[]
    configurations {
        create("rejectConfig") {
            resolutionStrategy {
                componentSelection {
                    // Accept the highest version matching the requested version that isn't '1.5'
                    all {
                        if (candidate.group == "org.sample" && candidate.module == "api" && candidate.version == "1.5") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top