Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 684 for descriptor (0.16 sec)

  1. src/syscall/syscall_darwin.go

    	if err != nil {
    		return 0, err
    	}
    
    	// We need to duplicate the incoming file descriptor
    	// because the caller expects to retain control of it, but
    	// fdopendir expects to take control of its argument.
    	// Just Dup'ing the file descriptor is not enough, as the
    	// result shares underlying state. Use openat to make a really
    	// new file descriptor referring to the same directory.
    	fd2, err := openat(fd, ".", O_RDONLY, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            _ * container.identityPath >> (parent == null ? build.identityPath : build.identityPath.append(parent.projectPath).child(name))
    
            def descriptor = Mock(ProjectDescriptor) {
                getName() >> name
                getProjectDir() >> new File("project")
                getBuildFile() >> new File("build file")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    SIGPIPE signal.
    
    If the program has not called Notify to receive SIGPIPE signals, then
    the behavior depends on the file descriptor number. A write to a
    broken pipe on file descriptors 1 or 2 (standard output or standard
    error) will cause the program to exit with a SIGPIPE signal. A write
    to a broken pipe on some other file descriptor will take no action on
    the SIGPIPE signal, and the write will fail with an EPIPE error.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    // SS_*, where x=SAVSTACK_ASYNC
    #define SS_LE(x)             0(x)
    #define SS_GO(x)             8(x)
    #define SS_ERRNO(x)         16(x)
    #define SS_ERRNOJR(x)       20(x)
    
    // Function Descriptor Offsets
    #define __errno  0x156*16
    #define __err2ad 0x16C*16
    
    // Call Instructions
    #define LE_CALL    BYTE $0x0D; BYTE $0x76 // BL R7, R6
    #define SVC_LOAD   BYTE $0x0A; BYTE $0x08 // SVC 08 LOAD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadataSerializationHelper.java

    import org.gradle.api.internal.attributes.ImmutableAttributes;
    import org.gradle.internal.component.external.descriptor.Configuration;
    import org.gradle.internal.component.external.descriptor.MavenScope;
    import org.gradle.internal.component.external.model.AbstractRealisedModuleComponentResolveMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                        }
    
                        @Suppress("UnstableApiUsage")
                        override fun createListener(descriptor: ListenerDescriptor): Any {
                            val listenerClass = loadClass<Any>(descriptor.listenerClassName, descriptor.pluginDescriptor)
                            val listener = listenerClass.getDeclaredConstructor(Project::class.java).newInstance(this)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

         *
         * <pre class='autoTested'>
         * apply plugin: 'java'
         *
         * test {
         *    onOutput { descriptor, event -&gt;
         *        if (event.destination == TestOutputEvent.Destination.StdErr) {
         *            logger.error("Test: " + descriptor + ", error: " + event.message)
         *        }
         *    }
         * }
         * </pre>
         *
         * @param closure The closure to call.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

        fi
    fi
    
    # Increase the maximum file descriptors if we can.
    if ! "\$cygwin" && ! "\$darwin" && ! "\$nonstop" ; then
        case \$MAX_FD in #(
          max*)
            # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
            # shellcheck disable=SC2039,SC3045
            MAX_FD=\$( ulimit -H -n ) ||
                warn "Could not query maximum file descriptor limit"
        esac
        case \$MAX_FD in  #(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

    import com.google.common.collect.SetMultimap;
    import org.gradle.api.artifacts.component.ModuleComponentSelector;
    import org.gradle.internal.component.ResolutionFailureHandler;
    import org.gradle.internal.component.external.descriptor.Artifact;
    import org.gradle.internal.component.external.model.ExternalDependencyDescriptor;
    import org.gradle.internal.component.model.ComponentGraphResolveState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/deadcode.go

    				if i+2 >= relocs.Count() {
    					panic("expect three consecutive R_METHODOFF relocs")
    				}
    				if usedInIface {
    					methods = append(methods, methodref{src: symIdx, r: i})
    					// The method descriptor is itself a type descriptor, and
    					// it can be used to reach other types, e.g. by using
    					// reflect.Type.Method(i).Type.In(j). We need to traverse
    					// its child types with UsedInIface set. (See also the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top