Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,355 for Over (0.03 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/tests/antLoadfile.out

     *** agile.manifesto.txt ***
    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Responding to change over following a plan
     *** gradle.manifesto.txt ***
    Make the impossible possible, make the possible easy and make the easy elegant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 368 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReport.out

    log4j:log4j:1.2.16 FAILED
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    org.slf4j:log4j-over-slf4j:1.7.10 FAILED
       Failures:
          - Could not resolve org.slf4j:log4j-over-slf4j:1.7.10.
              - Module 'org.slf4j:log4j-over-slf4j' has been rejected:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/internal/types/testdata/spec/range.go

    	m1 := T.M
    	for range m1 /* ERROR "cannot range over m1 (variable of type func(T)): func must be func(yield func(...) bool): argument is not func" */ {
    	}
    	m2 := (*T).PM
    	for range m2 /* ERROR "cannot range over m2 (variable of type func(*T)): func must be func(yield func(...) bool): argument is not func" */ {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 04:31:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/kotlin/build.gradle.kts

    }
    
    // tag::dependencies[]
    dependencies {
        // This dependency will bring log4:log4j transitively
        implementation("org.apache.zookeeper:zookeeper:3.4.9")
    
        // We use log4j over slf4j
        implementation("org.slf4j:log4j-over-slf4j:1.7.10")
    }
    // end::dependencies[]
    
    // tag::use_highest_asm[]
    configurations.all {
        resolutionStrategy.capabilitiesResolution.withCapability("org.ow2.asm:asm") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/groovy/build.gradle

    }
    
    // tag::dependencies[]
    dependencies {
        // This dependency will bring log4:log4j transitively
        implementation 'org.apache.zookeeper:zookeeper:3.4.9'
    
        // We use log4j over slf4j
        implementation 'org.slf4j:log4j-over-slf4j:1.7.10'
    }
    // end::dependencies[]
    
    // tag::use_highest_asm[]
    configurations.all {
        resolutionStrategy.capabilitiesResolution.withCapability('org.ow2.asm:asm') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue50372.go

            _, _, _, _ = i, j, k, l
    
            for range s {}
            for i = range s {}
            for i, j = range s {} // ERROR "range over .* permits only one iteration variable"
            for i, j, k = range s {} // ERROR "range over .* permits only one iteration variable"
            for i, j, k, l = range s {} // ERROR "range over .* permits only one iteration variable"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 959 bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    }
    
    // ReadUint8 decodes an 8-bit value into out and advances over it.
    // It reports whether the read was successful.
    func (s *String) ReadUint8(out *uint8) bool {
    	v := s.read(1)
    	if v == nil {
    		return false
    	}
    	*out = uint8(v[0])
    	return true
    }
    
    // ReadUint16 decodes a big-endian, 16-bit value into out and advances over it.
    // It reports whether the read was successful.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. test/range4.go

    	_ = yield(1) && yield(2)
    }
    
    func testfunc0() {
    	j := 0
    	for range yield4x {
    		j++
    	}
    	if j != 4 {
    		println("wrong count ranging over yield4x:", j)
    		panic("testfunc0")
    	}
    
    	j = 0
    	for _ = range yield4 {
    		j++
    	}
    	if j != 4 {
    		println("wrong count ranging over yield4:", j)
    		panic("testfunc0")
    	}
    }
    
    func testfunc1() {
    	bad := false
    	j := 1
    	for i := range yield4 {
    		if i != j {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 16:00:53 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/kotlin/build.gradle.kts

                because("""prefer "groovy" over "groovy-all"""")
            }
            if (requested.name == "log4j") {
                useTarget("org.slf4j:log4j-over-slf4j:1.7.10")
                because("""prefer "log4j-over-slf4j" 1.7.10 over any version of "log4j"""")
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/groovy/build.gradle

                details.because "prefer 'groovy' over 'groovy-all'"
            }
            if (details.requested.name == 'log4j') {
                details.useTarget "org.slf4j:log4j-over-slf4j:1.7.10"
                details.because "prefer 'log4j-over-slf4j' 1.7.10 over any version of 'log4j'"
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top