Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 324 for indirect$ (0.19 sec)

  1. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/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: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. hack/pin-dependency.sh

        go mod edit -require "${dep}@${rev}"
    
        # When replacing with a fork, always add a replace statement in all go.mod
        # files (not just the root of the staging repos!) because there might be
        # indirect dependencies on the fork.
        #
        # This is excessive, but the resulting commit should never be merged, so it
        # isn't that important to get this exactly right.
        if [ "${replacement}" != "${dep}" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal.go

    	return "", nil, &UnsupportedTypeError{typ}
    }
    
    var ddBytes = []byte("--")
    
    // indirect drills into interfaces and pointers, returning the pointed-at value.
    // If it encounters a nil interface or pointer, indirect returns that nil value.
    // This can turn into an infinite loop given a cyclic chain,
    // but it matches the Go 1 behavior.
    func indirect(vf reflect.Value) reflect.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. hack/update-vendor.sh

          jq -r '"-replace \(.Old.Path)=\(.New.Path)@\(.New.Version)"' < "${replace_json}" \
              | xargs -L 100 go mod edit -fmt
        )
      done
    
      # tidy to ensure require directives are added for indirect dependencies
      go mod tidy
    }
    
    function print_go_mod_section() {
      local directive="$1"
      local file="$2"
    
      if [ -s "${file}" ]; then
          echo "${directive} ("
          cat "$file"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top