Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 629 for place (0.06 sec)

  1. pkg/util/sets/set.go

    		if !s2.Contains(key) {
    			result.Insert(key)
    		}
    	}
    	return result
    }
    
    // DifferenceInPlace similar to Difference, but has better performance.
    // Note: This function modifies s in place.
    func (s Set[T]) DifferenceInPlace(s2 Set[T]) Set[T] {
    	for key := range s {
    		if s2.Contains(key) {
    			delete(s, key)
    		}
    	}
    	return s
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ObjectBasedValueSource.java

         * accessor types to resolve the value for each successive expression part.
         * Finally, return the result of the last expression part's resolution.</p>
         *
         * <p><b>NOTE:</b> The object-graph nagivation actually takes place via the
         * {@link ReflectionValueExtractor} class.</p>
         */
        public Object getValue(String expression) {
            if (expression == null || expression.trim().isEmpty()) {
                return null;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/FunctionSinceRepository.kt

                            // This is a hack.
                            //
                            // qdox doesn't understand annotations placed in generic type parameters
                            // The only place we use this is with Nullable, so this hackily removes the annotation when
                            // the source file is processed by qdox.
                            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_download_concurrent_read.txt

    # This test simulates a process watching for changes and reading files in
    # module cache as a module is extracted.
    #
    # Before Go 1.16, we extracted each module zip to a temporary directory with
    # a random name, then renamed that into place with os.Rename. On Windows,
    # this failed with ERROR_ACCESS_DENIED when another process (usually an
    # anti-virus scanner) opened files in the temporary directory. This test
    # simulates that behavior, verifying golang.org/issue/36568.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/antmigration/SamplesAntImportIntegrationTest.groovy

            when:
            def result = succeeds('clean', 'assemble')
    
            then: "The correct JAR is built"
            dslDir.file('target/lib/hello-app.jar').isFile()
    
            and: "The compilejava task is executed in place of the original 'build' task"
            result.assertTaskExecuted(':compileJava')
            result.assertTaskNotExecuted(':build')
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    	`)))
    )
    
    // NewWaitControlPlanePhase is a hidden phase that runs after the control-plane and etcd phases
    func NewWaitControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name:  "wait-control-plane",
    		Short: "Wait for the control plane to start",
    		// TODO: unhide this phase once WaitForAllControlPlaneComponents goes GA:
    		// https://github.com/kubernetes/kubeadm/issues/2907
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gotoolchain_issue66175.txt

    env GOTOOLCHAIN=go1.21+path
    ! go version
    stderr 'go: cannot find "go1.21" in PATH'
    
    env GOTOOLCHAIN=go1.22+path
    ! go version
    stderr 'go: cannot find "go1.22" in PATH'
    
    # When a toolchain download takes place, download 1.X.0
    env GOTOOLCHAIN=auto
    rm go.mod
    go mod init m
    go mod edit -go=1.300 -toolchain=none
    ! go version
    stderr 'go: downloading go1.300.0 '
    
    rm go.mod
    go mod init m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 21:32:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

         */
        List<ExcludeMetadata> getExcludes();
    
        /**
         * Returns the artifacts referenced by this dependency, if any.
         * When a dependency references artifacts, those artifacts are used in place of the default artifacts of the target component.
         * In most cases, it makes sense for this set to be empty, and for all of the artifacts of the target component to be included.
         */
        List<IvyArtifactName> getArtifacts();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. pkg/test/framework/features/README.md

    case has no scenario.
    
    The hierarchical nature of feature labels allows us to aggregate data about related feature sets.  To provide for consistent reporting and aggregation, we have defined the top two layers of hierarchy, and ask that you place your feature under these headings.  For more detail on the purpose of each heading, see Top-Level Feature Headings below.  If you feel that none of the existing headings fit your feature, please check with the Test and Release Working Group before...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/ImplementationDependencyRelocator.java

            "com/sun/jna",
            "org/apache/groovy",
            // JGit properties work from their relocated locations and conflict if they are left in place.
            "org/eclipse/jgit");
    
        private final boolean mustBeRelocated(String resource) {
            for (String mustRelocate : mustRelocateList) {
                if (resource.startsWith(mustRelocate)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top