Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for encInt (0.17 sec)

  1. src/encoding/gob/encode.go

    	reflect.Bool:       encBool,
    	reflect.Int:        encInt,
    	reflect.Int8:       encInt,
    	reflect.Int16:      encInt,
    	reflect.Int32:      encInt,
    	reflect.Int64:      encInt,
    	reflect.Uint:       encUint,
    	reflect.Uint8:      encUint,
    	reflect.Uint16:     encUint,
    	reflect.Uint32:     encUint,
    	reflect.Uint64:     encUint,
    	reflect.Uintptr:    encUint,
    	reflect.Float32:    encFloat,
    	reflect.Float64:    encFloat,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

        public static final JvmVendorSpec SAP = matching(KnownJvmVendor.SAP);
    
        /**
         * A constant for using <a href="https://tencent.github.io/konajdk">Tencent Kona JDK</a> as the JVM vendor.
         *
         * @since 8.6
         */
        @Incubating
        public static final JvmVendorSpec TENCENT = matching(KnownJvmVendor.TENCENT);
    
        /**
         * Determines if the vendor passed as an argument matches this spec.
         * @param vendor the vendor to test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/runtime/os3_plan9.go

    		} else {
    			c.setpc(abi.FuncPCABI0(sigpanic0))
    		}
    		return _NCONT
    	}
    	if flags&_SigNotify != 0 {
    		if ignoredNote(note) {
    			return _NCONT
    		}
    		if sendNote(note) {
    			return _NCONT
    		}
    	}
    	if flags&_SigKill != 0 {
    		goto Exit
    	}
    	if flags&_SigThrow == 0 {
    		return _NCONT
    	}
    Throw:
    	mp.throwing = throwTypeRuntime
    	mp.caughtsig.set(gp)
    	startpanic_m()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/os/user/cgo_lookup_unix.go

    		var errno syscall.Errno
    		pwd, found, errno = _C_getpwnam_r((*_C_char)(unsafe.Pointer(&nameC[0])),
    			(*_C_char)(unsafe.Pointer(&buf[0])), _C_size_t(len(buf)))
    		return errno
    	})
    	if err == syscall.ENOENT || (err == nil && !found) {
    		return nil, UnknownUserError(username)
    	}
    	if err != nil {
    		return nil, fmt.Errorf("user: lookup username %s: %v", username, err)
    	}
    	return buildUser(&pwd), err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/encoding/hex/hex_test.go

    				t.Errorf("encoder.Write(%q*%d) = (%d, %v), want (%d, nil)", test.dec, multiplier, n, err, len(input))
    				continue
    			}
    
    			if encDst := buf.String(); encDst != output {
    				t.Errorf("buf(%q*%d) = %v, want %v", test.dec, multiplier, encDst, output)
    				continue
    			}
    
    			dec := NewDecoder(&buf)
    			var decBuf bytes.Buffer
    			w := struct{ io.Writer }{&decBuf} // io.Writer only; not io.ReaderFrom
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. cmd/os-reliable.go

    			return errFileAccessDenied
    		}
    		return osErrToFileErr(err)
    	}
    
    	return nil
    }
    
    // Reliably retries os.MkdirAll if for some reason os.MkdirAll returns
    // syscall.ENOENT (parent does not exist).
    func reliableMkdirAll(dirPath string, mode os.FileMode, baseDir string) (err error) {
    	i := 0
    	for {
    		// Creates all the parent directories, with mode 0777 mkdir honors system umask.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-configuration/src/integTest/groovy/org/gradle/interal/buildconfiguration/tasks/UpdateDaemonJvmIntegrationTest.groovy

            where:
            vendor << ["ADOPTIUM", "ADOPTOPENJDK", "AMAZON", "APPLE", "AZUL", "BELLSOFT", "GRAAL_VM", "HEWLETT_PACKARD", "IBM", "JETBRAINS", "MICROSOFT", "ORACLE", "SAP", "TENCENT", "UNKNOWN"]
        }
    
        @NotYetImplemented
        def "When execute updateDaemonJvm for valid implementation option Then build properties are populated with expected values"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/time/zoneinfo_read.go

    			}
    		}
    		if firstErr == nil && err != syscall.ENOENT {
    			firstErr = err
    		}
    	}
    	if loadFromEmbeddedTZData != nil {
    		zoneData, err := loadFromEmbeddedTZData(name)
    		if err == nil {
    			if z, err = LoadLocationFromTZData(name, []byte(zoneData)); err == nil {
    				return z, nil
    			}
    		}
    		if firstErr == nil && err != syscall.ENOENT {
    			firstErr = err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. cmd/gotemplate/gotemplate_test.go

    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    )
    
    func TestGenerate(t *testing.T) {
    	noFileErr := os.PathError{Op: "open", Path: "no-such-file.txt", Err: syscall.Errno(syscall.ENOENT)}
    	for name, tt := range map[string]struct {
    		in          string
    		data        map[string]string
    		files       map[string]string
    		expected    string
    		expectedErr string
    	}{
    		"missing-file": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 22 13:43:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainInvalidCriteriaIntegrationTest.groovy

                "[ADOPTIUM, ADOPTOPENJDK, AMAZON, APPLE, AZUL, BELLSOFT, GRAAL_VM, HEWLETT_PACKARD, IBM, JETBRAINS, MICROSOFT, ORACLE, SAP, TENCENT, UNKNOWN]")
        }
    
        @NotYetImplemented
        def "Given unexpected toolchain implementation When execute any task Then fails with expected exception message"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top