Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 718 for anotherOk (1.06 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                }
                defaultTask.custom = 'another value'
                javaTask.custom = 'another value'
                groovyTask.custom = 'another value'
                assert !project.hasProperty('custom')
                assert defaultTask.hasProperty('custom')
                assert defaultTask.custom == 'another value'
                assert javaTask.custom == 'another value'
                assert groovyTask.custom == 'another value'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    This is quite simple (not very useful), but will help us focus on how the sub-dependencies work.
    
    ## Second dependency, "dependable" and "dependant"
    
    Then you can create another dependency function (a "dependable") that at the same time declares a dependency of its own (so it is a "dependant" too):
    
    === "Python 3.10+"
    
        ```Python hl_lines="13"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphNode.java

        Collection<? extends DependencyGraphEdge> getIncomingEdges();
    
        Collection<? extends DependencyGraphEdge> getOutgoingEdges();
    
        /**
         * The outgoing file dependencies of this node. Should be modelled edges to another node, but are treated separately for now.
         */
        Set<? extends LocalFileDependencyMetadata> getOutgoingFileEdges();
    
        VariantGraphResolveMetadata getMetadata();
    
        boolean isSelected();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/DaemonJvmCompatibilityCrossVersionSpec.groovy

        def setup() {
            buildFile.touch()
            settingsFile << """
                rootProject.name = "root"
            """
        }
    
        @TargetGradleVersion(">=8.8")
        def "can run a build with Java 21 followed by another build with a different version"() {
            given:
            def jdk21 = AvailableJavaHomes.getJdk21()
            def jdk17 = AvailableJavaHomes.getJdk17()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/internal/types/testdata/spec/typeAliases1.23b.go

    // A generic type alias may be used like any other generic type.
    type A[P any] = RHS[P, int]
    
    func _(a A[string]) {
    	a.p = "foo"
    	a.q = 42
    }
    
    // A generic alias may refer to another generic alias.
    type B[P any] = A[P]
    
    func _(a B[string]) {
    	a.p = "foo"
    	a.q = 42
    	// error messages print the instantiated alias type
    	a.r /* ERROR "a.r undefined (type B[string] has no field or method r)" */ = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

    /**
     * The option of a command-line tool where to place the paths to some dependencies.
     * A {@code PathType} can identify the Java class-path, the Java module-path,
     * or another kind of path for another programming language for example.
     * Path types are often exclusive. For example, a dependency should not be
     * both on the Java class-path and on the Java module-path.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     * that they don't leak the service: the lifetime of the property should be shorter or as long as the lifetime of the cached service.
     *
     * When caching a service inside another service, the property should also be [lazy] to avoid issues with cyclic service initialization and
     * excessive class loading on startup.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. cmd/erasure-decode.go

    					br.Close()
    				}
    				p.readers[i] = nil
    
    				// Since ReadAt returned error, trigger another read.
    				readTriggerCh <- true
    				return
    			}
    			newBufLK.Lock()
    			newBuf[bufIdx] = p.buf[bufIdx][:n]
    			newBufLK.Unlock()
    			// Since ReadAt returned success, there is no need to trigger another read.
    			readTriggerCh <- false
    		}(readerIndex)
    		readerIndex++
    	}
    	wg.Wait()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 21 14:36:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	createPod("128.0.0.1", "another-pod")
    	assert.Equal(t, sets.New(c.pods.getPodKeys("128.0.0.1")...), sets.New(
    		types.NamespacedName{Name: "new-pod", Namespace: "ns"},
    		types.NamespacedName{Name: "another-pod", Namespace: "ns"},
    	))
    
    	fetch := func() sets.Set[types.NamespacedName] { return sets.New(c.pods.getPodKeys("128.0.0.1")...) }
    	pods.Delete("another-pod", "ns")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top