Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 466 for composed (0.77 sec)

  1. src/internal/types/testdata/spec/comparisons.go

    	_ = b == b
    	_ = a /* ERROR "[10]func() cannot be compared" */ == a
    	_ = l /* ERROR "slice can only be compared to nil" */ == l
    	_ = s /* ERROR "struct containing []byte cannot be compared" */ == s
    	_ = p == p
    	_ = f /* ERROR "func can only be compared to nil" */ == f
    	_ = i == i
    	_ = m /* ERROR "map can only be compared to nil" */ == m
    	_ = c == c
    
    	_ = b == nil /* ERROR "mismatched types" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

    sealed class ResidualProgram {
    
        /**
         * A static residue, can be compiled ahead of time.
         */
        data class Static(val instructions: List<Instruction>) : ResidualProgram() {
    
            constructor(vararg instructions: Instruction) :
                this(instructions.toList())
        }
    
        /**
         * A dynamic script [source] residue, can only be compiled after the execution of the static [prelude] at runtime.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue50918.go

    	things []string
    }
    
    type thing2 struct {
    	things []thing1
    }
    
    func _() {
    	var a1, b1 thing1
    	_ = a1 /* ERROR "struct containing []string cannot be compared" */ == b1
    
    	var a2, b2 thing2
    	_ = a2 /* ERROR "struct containing []thing1 cannot be compared" */ == b2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 453 bytes
    - Viewed (0)
  4. test/typeparam/cons.go

    func (this incr) Apply(x int) int {
    	return x + this.n
    }
    
    type pos struct{}
    
    func (this pos) Apply(x int) bool {
    	return x > 0
    }
    
    type compose[a, b, c any] struct {
    	f Function[a, b]
    	g Function[b, c]
    }
    
    func (this compose[a, b, c]) Apply(x a) c {
    	return this.g.Apply(this.f.Apply(x))
    }
    
    type _Eq[a any] interface {
    	Equal(a) bool
    }
    
    type Int int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 21 23:41:49 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. docs/site-replication/ldap.yaml

    # To run locally an OpenLDAP instance using Docker
    # $ docker-compose -f ldap.yaml up -d
    version: '3.7'
    
    services:
      openldap:
        image: quay.io/minio/openldap
        ports:
          - "389:389"
          - "636:636"
        environment:
          LDAP_ORGANIZATION: "MinIO Inc"
          LDAP_DOMAIN: "min.io"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 09 01:34:52 UTC 2021
    - 325 bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/defs.h

    // Name of attribute used to tag operators for compilation with XLA
    
    // Implies must-compile semantics: either it will be compiled
    // with XLA, or an error will be thrown.
    extern const char* const kXlaMustCompileAttr;  // "_XlaMustCompile"
    
    // Implies auto-clustering: tagged nodes will be clustered and compiled with XLA
    // on a best-effort basis.
    extern const char* const kXlaCompileAttr;  // "_XlaCompile"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 01:03:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/slashpath.txt

    # This is important for reproducing native builds with cross-compiled builds.
    go build -o x.a text/template
    ! grep 'GOROOT\\' x.a
    ! grep 'text\\template' x.a
    ! grep 'c:\\' x.a
    
    # executables should use slash-separated paths even on windows
    # This is important for reproducing native builds with cross-compiled builds.
    go build -o hello.exe hello.go
    ! grep 'GOROOT\\' hello.exe
    ! grep '\\runtime' hello.exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 596 bytes
    - Viewed (0)
  8. src/net/http/httptrace/trace.go

    // hook.
    type WroteRequestInfo struct {
    	// Err is any error encountered while writing the Request.
    	Err error
    }
    
    // compose modifies t such that it respects the previously-registered hooks in old,
    // subject to the composition policy requested in t.Compose.
    func (t *ClientTrace) compose(old *ClientTrace) {
    	if old == nil {
    		return
    	}
    	tv := reflect.ValueOf(t).Elem()
    	ov := reflect.ValueOf(old).Elem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCompoundAccess.kt

         * The function that compute the value for this compound access. For example, if the access is `+=`, this is the resolved `plus`
         * function. If the access is `++`, this is the resolved `inc` function.
         */
        public val operationPartiallyAppliedSymbol: KaPartiallyAppliedFunctionSymbol<KaFunctionSymbol> get() = withValidityAssertion { backingOperationPartiallyAppliedSymbol }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/SortedMapDiffUtil.java

                while (true) {
                    K previousProperty = previousEntry.getKey();
                    K currentProperty = currentEntry.getKey();
                    int compared = comparator.compare(previousProperty, currentProperty);
                    if (compared < 0) {
                        if (!diffListener.removed(previousProperty)) {
                            return false;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top