Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 347 for filtering (0.11 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelection.java

    /**
     * Describes the set of filtered XCTests.
     *
     * NOTE: Eventually we want to support regular Java-like test filtering, like filtering for a set of test cases
     * or test suites that match a particular pattern.  Unfortunately, XCTest is very limited with how much up-front
     * test discovery we can do and the kind of filtering we can specify from the command-line.  This class reflects
     * those limitations.
     */
    public class XCTestSelection {
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-11-16 20:20
    - 4.2K bytes
    - Viewed (0)
  2. releasenotes/notes/27490.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 27490
    
    releaseNotes:
    - |
    Registered: 2024-06-14 15:00
    - Last Modified: 2020-11-09 14:21
    - 176 bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml

        <testOutputDirectory>build/test</testOutputDirectory>
        <finalName>coreit</finalName>
        <resources>
          <resource>
            <directory>res/main</directory>
            <filtering>true</filtering>
            <targetPath>main</targetPath>
            <includes>
              <include>main.included</include>
            </includes>
            <excludes>
              <exclude>main.excluded</exclude>
    Registered: 2024-06-12 09:55
    - Last Modified: 2020-03-29 19:02
    - 8.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/fileCollections/kotlin/build.gradle.kts

        val collection: FileCollection = collection
        val projectDirectory = layout.projectDirectory
        doLast {
            // tag::filtering-file-collections[]
            val textFiles: FileCollection = collection.filter { f: File ->
                f.name.endsWith(".txt")
            }
            // end::filtering-file-collections[]
    
            textFiles.map { it.relativeTo(projectDirectory.asFile).path }.sorted().forEach { path: String ->
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-03-15 13:55
    - 2.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

    import javax.annotation.Nullable;
    
    /**
     * Details about an artifact resolution query. This is used whenever repository
     * content filtering is in place.
     * <p></p>
     * This interface gives access to the details of the artifact query. There are two
     * cases when filtering can be called:
     * <p></p>
     * <ul>
     *     <li>when looking for a specific module version, for example org:foo:1.0</li>
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-12-13 17:41
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

        EXPECT_THAT(s.message(), HasSubstr("Second diagnostic message reported"));
      }
    }
    
    TEST(ErrorUtilTest, StatusScopedDiagnosticHandlerWithFilter) {
      // Filtering logic is based on tensorflow::IsInternalFrameForFilename()
      // Note we are surfacing the locations that are NOT internal frames
      // so locations that fail IsInternalFrameForFilename() evaluation pass the
      // filter.
    
    Registered: 2024-06-16 05:45
    - Last Modified: 2024-02-26 03:47
    - 6.7K bytes
    - Viewed (0)
  7. src/go/ast/filter.go

    // license that can be found in the LICENSE file.
    
    package ast
    
    import (
    	"go/token"
    	"slices"
    )
    
    // ----------------------------------------------------------------------------
    // Export filtering
    
    // exportFilter is a special filter function to extract exported nodes.
    func exportFilter(name string) bool {
    	return IsExported(name)
    }
    
    // FileExports trims the AST for a Go source file in place such that
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-05-23 01:00
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

                it.get("specialItem") == null
            }
        }
    
        def "all(Action) respects chained filtering"() {
            expect:
            accessedBy { map, action -> map.withType(specialItemClass).all(action) } == ["specialItem"]
        }
    
        def "all(DeferredModelAction) respects chained filtering"() {
            expect:
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-09-28 09:51
    - 38.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/response-model.md

    ...but continue reading below to see how to overcome that.
    
    ## Return Type and Data Filtering
    
    Let's continue from the previous example. We wanted to **annotate the function with one type** but return something that includes **more data**.
    
    We want FastAPI to keep **filtering** the data using the response model.
    
    Registered: 2024-06-17 08:32
    - Last Modified: 2024-04-18 19:53
    - 17.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml

        <testOutputDirectory>build/test</testOutputDirectory>
        <finalName>coreit</finalName>
        <resources>
          <resource>
            <directory>res/main</directory>
            <filtering>true</filtering>
            <targetPath>main</targetPath>
            <includes>
              <include>main.included</include>
            </includes>
            <excludes>
              <exclude>main.excluded</exclude>
    Registered: 2024-06-12 09:55
    - Last Modified: 2020-03-29 19:02
    - 8.6K bytes
    - Viewed (0)
Back to top