Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 103 for descriptor (0.2 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    
    	return 0
    }
    
    // For detection of capabilities on a system.
    // Is function descriptor f a valid function?
    func isValidLeFunc(f uintptr) error {
    	ret := funcptrtest(f, "")
    	if ret != 0 {
    		return fmt.Errorf("Bad pointer, not an LE function ")
    	}
    	return nil
    }
    
    // Retrieve function name from descriptor
    func getLeFuncName(f uintptr) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * Returns the description of this project, if any.
         *
         * @return the description. May return null.
         */
        @Nullable
        String getDescription();
    
        /**
         * Sets a description for this project.
         *
         * @param description The description of the project. Might be null.
         */
        void setDescription(@Nullable String description);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== EAR plugin with customized JEE 1.3 descriptor
    
    Gradle 8.4 forbids external XML entities when parsing XML documents.
    If you use the EAR plugin and configure the `application.xml` descriptor via the EAR plugin's DSL and customize the descriptor using `withXml {}` and use `asElement{}` in the customization block, then the build will now fail for security reasons.
    
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context_test.go

    }
    
    func TestWellKnownProvidersCount(t *testing.T) {
    	msg := &meshconfig.MeshConfig_ExtensionProvider{}
    	pb := msg.ProtoReflect()
    	md := pb.Descriptor()
    
    	found := sets.New[string]()
    	for i := 0; i < md.Oneofs().Get(0).Fields().Len(); i++ {
    		found.Insert(string(md.Oneofs().Get(0).Fields().Get(i).Name()))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("pom-encoding/utf-8");
            assertEquals("TEST-CHARS: \u00DF\u0131\u03A3\u042F\u05D0\u20AC", pom.getValue("description"));
            pom = buildPom("pom-encoding/latin-1");
            assertEquals("TEST-CHARS: \u00C4\u00D6\u00DC\u00E4\u00F6\u00FC\u00DF", pom.getValue("description"));
        }
    
        /* MNG-4070 */
        @Test
        void testXmlWhitespaceHandling() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ear.descriptor.DeploymentDescriptor.withXml(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DeploymentDescriptor.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

     * begins with this header, aligned to a word boundary.  Immediately
     * following the note header is n_namesz bytes of name, padded to the
     * next word boundary.  Then comes n_descsz bytes of descriptor, again
     * padded to a word boundary.  The values of n_namesz and n_descsz do
     * not include the padding.
     */
    type elfNote struct {
    	nNamesz uint32
    	nDescsz uint32
    	nType   uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    // as anything but uintptr, so they're immune to differences in endianness. However, the
    // heapBits for user arena spans is exposed through a dummy type descriptor, so the byte
    // ordering needs to match the same byte ordering the compiler would emit. The compiler always
    // emits the bitmap data in little endian byte ordering, so on big endian platforms these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	//
    	// Since we know what causes those, and we know that they should resolve
    	// quickly (the ETXTBSY error will resolve as soon as the subprocess
    	// holding the descriptor open reaches its 'exec' call), we retry them
    	// in a loop.
    
    	var (
    		cmd            *exec.Cmd
    		t0             time.Time
    		cancelKilled   = false
    		cancelSignaled = false
    	)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    		if !ldr.AttrReachable(s) && !ctxt.linkShared {
    			// If -linkshared, the GCProg generation code may need to reach
    			// out to the shared library for the type descriptor's data, even
    			// the type descriptor itself is not actually needed at run time
    			// (therefore not reachable). We still need to mangle its name,
    			// so it is consistent with the one stored in the shared library.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top