Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 144 for swiftc (0.18 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <suppress checks="JavadocPackage"
                  files=".*[/\\]platform-native[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]language[/\\]swift[/\\][^/\\]+"/>
    
        <!-- These packages are duplicated in core and war, don't require a package-info.java in each place -->
        <suppress checks="JavadocPackage"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/qos_container_manager_linux.go

    		libcontainercgroups.IsCgroup2UnifiedMode() {
    		m.setMemoryQoS(qosConfigs)
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.QOSReserved) {
    		for resource, percentReserve := range m.qosReserved {
    			switch resource {
    			case v1.ResourceMemory:
    				m.setMemoryReserve(qosConfigs, percentReserve)
    			}
    		}
    
    		updateSuccess := true
    		for _, config := range qosConfigs {
    			err := m.cgroupManager.Update(config)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/go/types/api.go

    	// package names, dots "." of dot-imports, and blank "_" identifiers).
    	// For identifiers that do not denote objects (e.g., the package name
    	// in package clauses, or symbolic variables t in t := x.(type) of
    	// type switch headers), the corresponding objects are nil.
    	//
    	// For an embedded field, Defs returns the field *Var it defines.
    	//
    	// Invariant: Defs[id] == nil || Defs[id].Pos() == id.Pos()
    	Defs map[*ast.Ident]Object
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/runtime/syscall_windows.go

    // offset of this type within its parent type.
    // Assumes t.size <= goarch.PtrSize and t.size != 0.
    //
    // Returns whether the assignment succeeded.
    func (p *abiDesc) tryRegAssignArg(t *_type, offset uintptr) bool {
    	switch k := t.Kind_ & abi.KindMask; k {
    	case abi.Bool, abi.Int, abi.Int8, abi.Int16, abi.Int32, abi.Uint, abi.Uint8, abi.Uint16, abi.Uint32, abi.Uintptr, abi.Pointer, abi.UnsafePointer:
    		// Assign a register for all these types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadstore.go

    	var used ir.NameSet               // used autos that must be kept
    
    	// visit the value and report whether any of the maps are updated
    	visit := func(v *Value) (changed bool) {
    		args := v.Args
    		switch v.Op {
    		case OpAddr, OpLocalAddr:
    			// Propagate the address if it points to an auto.
    			n, ok := v.Aux.(*ir.Name)
    			if !ok || n.Class != ir.PAUTO {
    				return
    			}
    			if addr[v] == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/cmd/distpack/pack.go

    			}
    			// Inside pkg/tool, keep only $GOOS_$GOARCH.
    			if !strings.HasPrefix(name, "pkg/tool/"+goosUnderGoarch+"/") {
    				return false
    			}
    			// Inside pkg/tool/$GOOS_$GOARCH, discard helper tools.
    			switch strings.TrimSuffix(path.Base(name), ".exe") {
    			case "api", "dist", "distpack", "metadata":
    				return false
    			}
    		}
    		return true
    	})
    
    	// Add go and gofmt to bin, using cross-compiled binaries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/crypto/ed25519/ed25519.go

    func (priv PrivateKey) Sign(rand io.Reader, message []byte, opts crypto.SignerOpts) (signature []byte, err error) {
    	hash := opts.HashFunc()
    	context := ""
    	if opts, ok := opts.(*Options); ok {
    		context = opts.Context
    	}
    	switch {
    	case hash == crypto.SHA512: // Ed25519ph
    		if l := len(message); l != sha512.Size {
    			return nil, errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l))
    		}
    		if l := len(context); l > 255 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. cmd/bucket-object-lock.go

    	if lhold.Status.Valid() && lhold.Status == objectlock.LegalHoldOn {
    		return ObjectLocked{}
    	}
    
    	ret := objectlock.GetObjectRetentionMeta(oi.UserDefined)
    	if ret.Mode.Valid() {
    		switch ret.Mode {
    		case objectlock.RetCompliance:
    			// In compliance mode, a protected object version can't be overwritten
    			// or deleted by any user, including the root user in your AWS account.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. cmd/erasure-healing-common.go

    		}
    	}
    
    	return onlineDisks, modTime, ""
    }
    
    // Convert verify or check parts returned error to integer representation
    func convPartErrToInt(err error) int {
    	err = unwrapAll(err)
    	switch err {
    	case nil:
    		return checkPartSuccess
    	case errFileNotFound, errFileVersionNotFound:
    		return checkPartFileNotFound
    	case errFileCorrupt:
    		return checkPartFileCorrupt
    	case errVolumeNotFound:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. internal/event/target/postgresql.go

    			createStmt = psqlCreateAccessTable
    		}
    
    		if _, dbErr := target.db.Exec(fmt.Sprintf(createStmt, target.args.Table)); dbErr != nil {
    			return dbErr
    		}
    	}
    
    	switch target.args.Format {
    	case event.NamespaceFormat:
    		// insert or update statement
    		if target.updateStmt, err = target.db.Prepare(fmt.Sprintf(psqlUpdateRow, target.args.Table)); err != nil {
    			return err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top