Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 520 for descriptor (0.15 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/ProblemProgressEventCrossVersionTest.groovy

            withConnection { connection ->
                connection.newBuild().forTasks('reportProblem')
                    .addProgressListener(listener)
                    .run()
            }
            return listener.problems.collect { it.descriptor }
        }
    
    
        @TargetGradleVersion("=8.3")
        def "Older Gradle versions do not report problems"() {
            setup:
            buildFile """
                plugins {
                  id 'java-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 11:36:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/internal/poll/fd_poll_runtime.go

    	}
    	defer fd.decref()
    	if fd.pd.runtimeCtx == 0 {
    		return ErrNoDeadline
    	}
    	runtime_pollSetDeadline(fd.pd.runtimeCtx, d, mode)
    	return nil
    }
    
    // IsPollDescriptor reports whether fd is the descriptor being used by the poller.
    // This is only used for testing.
    //
    // IsPollDescriptor should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r87/ProblemProgressEventCrossVersionTest.groovy

                    .severity(Severity.WARNING)
                    .solution("try this instead")
                }
            """
    
            when:
    
            def problems = runTask().collect{ it.descriptor }
    
            then:
            problems.size() == 0
    
            where:
            detailsConfig              | expectedDetails | documentationConfig                         | expecteDocumentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 11:36:58 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. internal/http/dial_linux.go

    )
    
    func setTCPParametersFn(opts TCPOptions) func(network, address string, c syscall.RawConn) error {
    	return func(network, address string, c syscall.RawConn) error {
    		c.Control(func(fdPtr uintptr) {
    			// got socket file descriptor to set parameters.
    			fd := int(fdPtr)
    
    			_ = unix.SetsockoptInt(fd, unix.SOL_SOCKET, unix.SO_REUSEADDR, 1)
    
    			_ = unix.SetsockoptInt(fd, unix.SOL_SOCKET, unix.SO_REUSEPORT, 1)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  5. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClasspathInferer.java

                    int itemOffset = reader.getItem(i);
                    if (itemOffset > 0 && reader.readByte(itemOffset - 1) == 7) {
                        // A CONSTANT_Class entry, read the class descriptor
                        String classDescriptor = reader.readUTF8(itemOffset, charBuffer);
                        Type type = Type.getObjectType(classDescriptor);
                        while (type.getSort() == Type.ARRAY) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

     * are decorated in order to validate their behavior.
     *
     * This class also serves a purpose when incremental annotation processing is not active.
     * It replaces the normal processor discovery, which suffers from file descriptor leaks
     * on Java 8 and below. Our own discovery mechanism does not have that issue.
     *
     * This also prevents the Gradle API from leaking into the annotation processor classpath.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/os/removeall_at.go

    	if recurseErr != nil {
    		return recurseErr
    	}
    	return &PathError{Op: "unlinkat", Path: base, Err: unlinkError}
    }
    
    // openDirAt opens a directory name relative to the directory referred to by
    // the file descriptor dirfd. If name is anything but a directory (this
    // includes a symlink to one), it should return an error. Other than that this
    // should act like openFileNolog.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsAtTopLevel2.descriptors.txt

    Dmitrii Gridin <******@****.***> 1716984543 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 349 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode/noRightOperandUnsignedLong.descriptors.txt

    Roman Efremov <******@****.***> 1716286974 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 181 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInit_DivByZero.descriptors.txt

    Roman Efremov <******@****.***> 1716286974 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 80 bytes
    - Viewed (0)
Back to top