Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 780 for retLine (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory.java

            if (originalScope == null) {
                originalScope = Artifact.SCOPE_COMPILE;
            }
    
            if (inheritedScope == null) {
                // direct dependency retains its scope
                effectiveScope = originalScope;
            } else if (Artifact.SCOPE_TEST.equals(originalScope) || Artifact.SCOPE_PROVIDED.equals(originalScope)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. releasenotes/notes/istio-mutual-cred-name.yaml

      This configuration is now rejected, as `ISTIO_MUTUAL` is intended to be used without `credentialName` set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 22 06:41:00 UTC 2022
    - 480 bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/DefaultFileSystemWatchingStatistics.java

            public VirtualFileSystemStatistics(Multiset<FileType> retained) {
                this.retained = retained;
            }
    
            public int getRetained(FileType fileType) {
                return retained.count(fileType);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/kustomizevisitor.go

    	mapper *mapper
    	schema ContentValidator
    	// Directory expected to contain a kustomization file.
    	dirPath string
    	// File system containing dirPath.
    	fSys filesys.FileSystem
    	// Holds result of kustomize build, retained for tests.
    	yml []byte
    }
    
    // Visit passes the result of a kustomize build to a StreamVisitor.
    func (v *KustomizeVisitor) Visit(fn VisitorFunc) error {
    	kOpts := krusty.MakeDefaultOptions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:40:28 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Interners.java

        }
      }
    
      /** Returns a fresh {@link InternerBuilder} instance. */
      public static InternerBuilder newBuilder() {
        return new InternerBuilder();
      }
    
      /**
       * Returns a new thread-safe interner which retains a strong reference to each instance it has
       * interned, thus preventing these instances from being garbage-collected. If this retention is
       * acceptable, this implementation may perform better than {@link #newWeakInterner}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinDslScriptsModelBuilder.kt

    }
    
    
    internal
    data class StandardEditorPosition(
        private val line: Int,
        private val column: Int = 0
    ) : EditorPosition, Serializable {
    
        override fun getLine() = line
    
        override fun getColumn() = column
    }
    
    
    internal
    abstract class AbstractKotlinDslScriptsModelBuilder : ToolingModelBuilder {
    
        companion object {
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 18:13:21 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/LineInFileLocation.java

        /**
         * The line number within the file.
         * <p>
         * The line is <b>one-indexed</b>, i.e. the first line in the file is line number 1.
         *
         * @return the line number
         */
        int getLine();
    
        /**
         * The starting column on the selected line.
         * <p>
         * The column is <b>one-indexed</b>, i.e. the first column in the file is line number 1.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/tidy.go

    with a non-zero code if the diff is not empty.
    
    The -go flag causes tidy to update the 'go' directive in the go.mod
    file to the given version, which may change which module dependencies
    are retained as explicit requirements in the go.mod file.
    (Go versions 1.17 and higher retain more requirements in order to
    support lazy module loading.)
    
    The -compat flag preserves any additional checksums needed for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

        def "close when lock has never been acquired"() {
            when:
            cacheAccess.close()
    
            then:
            0 * _
        }
    
        def "acquires lock then runs action and retains lock on completion"() {
            def action = Mock(Supplier)
            def lock = Mock(FileLock)
    
            when:
            cacheAccess.withFileLock(action)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. pkg/slices/slices.go

    		r[i], r[j] = r[j], r[i]
    	}
    	return r
    }
    
    func BinarySearch[S ~[]E, E cmp.Ordered](x S, target E) (int, bool) {
    	return slices.BinarySearch(x, target)
    }
    
    // FilterInPlace retains all elements in []E that f(E) returns true for.
    // The array is *mutated in place* and returned.
    // Use Filter to avoid mutation
    func FilterInPlace[E any](s []E, f func(E) bool) []E {
    	n := 0
    	for _, val := range s {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top