Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 84 for describeTo (0.21 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

    import org.gradle.internal.Actions
    import org.gradle.internal.BiAction
    import org.gradle.internal.BiActions
    import org.gradle.model.*
    import org.gradle.model.internal.core.*
    import org.gradle.model.internal.core.rule.describe.SimpleModelRuleDescriptor
    import org.gradle.model.internal.fixture.ModelRegistryHelper
    import org.gradle.model.internal.type.ModelType
    import org.gradle.model.internal.type.ModelTypes
    import org.gradle.util.internal.TextUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * ```
     * https://www.youtube.com/watch?v=cbP2N1BQdYc
     * ```
     *
     * ## What's in a URL?
     *
     * A URL has several components.
     *
     * ### Scheme
     *
     * Sometimes referred to as *protocol*, A URL's scheme describes what mechanism should be used to
     * retrieve the resource. Although URLs have many schemes (`mailto`, `file`, `ftp`), this class only
     * supports `http` and `https`. Use [java.net.URI][URI] for URLs with arbitrary schemes.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    	Fopthdr  uint16 // Number of bytes in optional header
    	Fflags   uint16 // Flags
    	Fnsyms   int32  // Number of entries in symbol table
    }
    
    const (
    	U64_TOCMAGIC = 0767 // AIX 64-bit XCOFF
    )
    
    // Flags that describe the type of the object file.
    const (
    	F_RELFLG    = 0x0001
    	F_EXEC      = 0x0002
    	F_LNNO      = 0x0004
    	F_FDPR_PROF = 0x0010
    	F_FDPR_OPTI = 0x0020
    	F_DSA       = 0x0040
    	F_VARPG     = 0x0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    	hc.incSeq()
    
    	return record, nil
    }
    
    // RecordHeaderError is returned when a TLS record header is invalid.
    type RecordHeaderError struct {
    	// Msg contains a human readable string that describes the error.
    	Msg string
    	// RecordHeader contains the five bytes of TLS record header that
    	// triggered the error.
    	RecordHeader [5]byte
    	// Conn provides the underlying net.Conn in the case that a client
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    		}
    	}
    
    	if t.C.Empty() {
    		fatalf("%s: internal error: did not create C name for %s", lineno(pos), dtype)
    	}
    
    	return t
    }
    
    // isStructUnionClass reports whether the type described by the Go syntax x
    // is a struct, union, or class with a tag.
    func isStructUnionClass(x ast.Expr) bool {
    	id, ok := x.(*ast.Ident)
    	if !ok {
    		return false
    	}
    	name := id.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    // values of type Object to ir.Node or a more specific type.
    type Object interface {
    	Pos() src.XPos
    	Sym() *Sym
    	Type() *Type
    }
    
    //go:generate stringer -type Kind -trimprefix T type.go
    
    // Kind describes a kind of type.
    type Kind uint8
    
    const (
    	Txxx Kind = iota
    
    	TINT8
    	TUINT8
    	TINT16
    	TUINT16
    	TINT32
    	TUINT32
    	TINT64
    	TUINT64
    	TINT
    	TUINT
    	TUINTPTR
    
    	TCOMPLEX64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// an ECHRejectionError error will be returned, which may contain a new
    	// ECHConfigList that the server suggests using.
    	//
    	// How this field is parsed may change in future Go versions, if the
    	// encoding described in the final Encrypted Client Hello RFC changes.
    	EncryptedClientHelloConfigList []byte
    
    	// EncryptedClientHelloRejectionVerify, if not nil, is called when ECH is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    }
    
    type Elfstring struct {
    	s   string
    	off int
    }
    
    var elfstr [100]Elfstring
    
    var nelfstr int
    
    var buildinfo []byte
    
    /*
    Initialize the global variable that describes the ELF header. It will be updated as
    we write section and prog headers.
    */
    func Elfinit(ctxt *Link) {
    	ctxt.IsELF = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    	MetaUser           map[string]string `json:"MetaUsr,omitempty" msg:"MetaUsr,allownil"`       // Object version metadata set by user
    }
    
    // xlMetaV2Version describes the journal entry, Type defines
    // the current journal entry type other types might be nil based
    // on what Type field carries, it is imperative for the caller
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Both changes could cause script compilation errors. See the https://github.com/gradle/kotlin-dsl-samples/releases/tag/v1.0.2#breaking-changes[Gradle Kotlin DSL release notes] for more information and how to fix builds broken by the changes described above.
    
    Miscellaneous::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top