Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 436 for indirect$ (0.18 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/exceptions/ContextAwareExceptionTest.groovy

            then:
            1 * visitor.visitCause(cause)
            1 * visitor.endVisiting()
            0 * visitor._
    
            and:
            e.reportableCauses == []
        }
    
        def "visitor visits indirect cause"() {
            def childCause = new RuntimeException()
            def cause = new RuntimeException(childCause)
            def e = new ContextAwareException(cause)
    
            when:
            e.accept(visitor)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    	//
    	// The "direct" map controls which modules are annotated with "// indirect"
    	// comments in the go.mod file, and may impact which modules are listed as
    	// explicit roots (vs. indirect-only dependencies). However, it should not
    	// have a semantic effect on the build list overall.
    	//
    	// The initial direct map is populated from the existing "// indirect"
    	// comments (or lack thereof) in the go.mod file. It is updated by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/internal/concurrent/hashtriemap_test.go

    			e = e.overflow.Load()
    		}
    		return
    	}
    	i := n.indirect()
    	fmt.Printf("%s%p [Indirect Parent=%p Dead=%t Children=[", prefix, i, i.parent, i.dead.Load())
    	for j := range i.children {
    		c := i.children[j].Load()
    		fmt.Printf("%p", c)
    		if j != len(i.children)-1 {
    			fmt.Printf(", ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue39634.go

    // crash 3
    type t3 *interface{ t3.p /* ERROR "t3.p is not a type" */ }
    
    // crash 4
    type Numeric4 interface{t4 /* ERROR "not a type" */ }
    func t4[T Numeric4](s[]T){if( /* ERROR "non-boolean" */ 0){*s /* ERROR "cannot indirect" */ [0]}}
    
    // crash 7
    type foo7 interface { bar() }
    type x7[A any] struct{ foo7 }
    func main7() { var _ foo7 = x7[int]{} }
    
    // crash 8
    type foo8[A any] interface { ~A /* ERROR "cannot be a type parameter" */ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. logger/sql.go

    				vars[idx] = nullStr
    			} else if valuer, ok := v.(driver.Valuer); ok {
    				v, _ = valuer.Value()
    				convertParams(v, idx)
    			} else if rv.Kind() == reflect.Ptr && !rv.IsZero() {
    				convertParams(reflect.Indirect(rv).Interface(), idx)
    			} else if isNumeric(rv.Kind()) {
    				if rv.CanInt() || rv.CanUint() {
    					vars[idx] = fmt.Sprintf("%d", rv.Interface())
    				} else {
    					vars[idx] = fmt.Sprintf("%.6f", rv.Interface())
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/internal/reflectlite/all_test.go

    	NotNil(ii, t)
    
    	var fi struct {
    		x func(t *testing.T)
    	}
    	Nil(fi, t)
    	fi.x = TestIsNil
    	NotNil(fi, t)
    }
    
    // Indirect returns the value that v points to.
    // If v is a nil pointer, Indirect returns a zero Value.
    // If v is not a pointer, Indirect returns v.
    func Indirect(v Value) Value {
    	if v.Kind() != Ptr {
    		return v
    	}
    	return v.Elem()
    }
    
    func TestNilPtrValueSub(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelPathTest.groovy

            !ModelPath.path("a.b").isDescendant(ModelPath.path("c.a.b.c"))
            !ModelPath.path("a.b").isDescendant(null)
        }
    
        def "can create paths for indirect descendants"() {
            expect:
            ModelPath.ROOT.descendant(ModelPath.path("c.d")) == ModelPath.path("c.d")
            ModelPath.path("a.b").descendant(ModelPath.path("c.d")) == ModelPath.path("a.b.c.d")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

                    require '1.0'
                    reject('1.1', '1.2')
                }
            }
            hasDependency('shortcut') {
                withGAV('g', 'a', '1.0')
            }
            hasDependency('indirect') {
                withGAV('g', 'b', '1.2')
            }
            hasDependency('incremental') {
                withGroup 'group'
                withName 'name'
                withVersion {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. licenses/github.com/containerd/typeurl/v2/LICENSE

          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 18:16:35 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top