Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 124 for umagic (0.21 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

            /*
             * MNG-4312: We neither have reserved all of the above magic expressions nor is their set fixed/well-known (it
             * gets occasionally extended by newer Maven versions). This imposes the risk for existing plugins to
             * unintentionally use such a magic expression for an ordinary property. So here we check whether we
             * ended up with a magic value that is not compatible with the type of the configured mojo parameter (a string
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/cmd/internal/archive/archive.go

    	errNotObject        = errors.New("unrecognized object file format")
    )
    
    type ErrGoObjOtherVersion struct{ magic []byte }
    
    func (e ErrGoObjOtherVersion) Error() string {
    	return fmt.Sprintf("go object of a different version: %q", e.magic)
    }
    
    // An objReader is an object file reader.
    type objReader struct {
    	a      *Archive
    	b      *bio.Reader
    	err    error
    	offset int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        }
    }
    
    
    private
    fun IntegrationTest.addDebugProperties() {
        // TODO Move magic property out
        if (project.hasProperty("org.gradle.integtest.debug")) {
            systemProperties["org.gradle.integtest.debug"] = "true"
            testLogging.showStandardStreams = true
        }
        // TODO Move magic property out
        if (project.hasProperty("org.gradle.integtest.verbose")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmContext.java

        private static final String S2C_SEAL_CONSTANT = "session key to server-to-client sealing key magic constant";
    
        private static final String C2S_SIGN_CONSTANT = "session key to client-to-server signing key magic constant";
        private static final String C2S_SEAL_CONSTANT = "session key to client-to-server sealing key magic constant";
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  5. src/debug/macho/file.go

    	le := binary.LittleEndian.Uint32(ident[0:])
    	switch Magic32 &^ 1 {
    	case be &^ 1:
    		f.ByteOrder = binary.BigEndian
    		f.Magic = be
    	case le &^ 1:
    		f.ByteOrder = binary.LittleEndian
    		f.Magic = le
    	default:
    		return nil, &FormatError{0, "invalid magic number", nil}
    	}
    
    	// Read entire file header.
    	if err := binary.Read(sr, f.ByteOrder, &f.FileHeader); err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/time/zoneinfo_read.go

    // (for example, the content of /etc/localtime on Unix systems).
    func LoadLocationFromTZData(name string, data []byte) (*Location, error) {
    	d := dataIO{data, false}
    
    	// 4-byte magic "TZif"
    	if magic := d.read(4); string(magic) != "TZif" {
    		return nil, errBadData
    	}
    
    	// 1-byte version, then 15 bytes of padding
    	var version int
    	var p []byte
    	if p = d.read(16); len(p) != 16 {
    		return nil, errBadData
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. src/internal/coverage/decodecounter/decodecounterfile.go

    		return nil, err
    	}
    	if cdr.debug {
    		fmt.Fprintf(os.Stderr, "=-= counter file header: %+v\n", cdr.hdr)
    	}
    	if !checkMagic(cdr.hdr.Magic) {
    		return nil, fmt.Errorf("invalid magic string: not a counter data file")
    	}
    	if cdr.hdr.Version > coverage.CounterFileVersion {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

                        return result;
                    }
                }
                return DynamicInvokeResult.notFound();
            }
    
            @Nullable
            @SuppressWarnings("unused") // Groovy magic method
            public Object propertyMissing(String name) {
                return getProperty(name);
            }
    
            @Override
            public DynamicInvokeResult trySetProperty(String name, @Nullable Object value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		mode string
    		size string
    		fmag string
    	}
    
    	var magbuf [len(magic)]byte
    	if _, err := io.ReadFull(f, magbuf[:]); err != nil {
    		t.Errorf("%s: archive too short", arname)
    		return
    	}
    	if string(magbuf[:]) != magic {
    		t.Errorf("%s: incorrect archive magic string %q", arname, magbuf)
    	}
    
    	off := int64(len(magic))
    	for {
    		if off&1 != 0 {
    			var b [1]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/test2json.go

    	ok := false
    	indent := 0
    	for _, magic := range updates {
    		if bytes.HasPrefix(line, magic) {
    			ok = true
    			break
    		}
    	}
    	if !ok {
    		// "--- PASS: "
    		// "--- FAIL: "
    		// "--- SKIP: "
    		// "--- BENCH: "
    		// but possibly indented.
    		for bytes.HasPrefix(line, fourSpace) {
    			line = line[4:]
    			indent++
    		}
    		for _, magic := range reports {
    			if bytes.HasPrefix(line, magic) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
Back to top