Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Filtering (0.14 sec)

  1. maven-core/pom.xml

          <version>${mockitoVersion}</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
      <build>
        <resources>
          <resource>
            <filtering>true</filtering>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.rat</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            }
            def transformed = transformer.transform(DefaultClassPath.of(jar), BuildLogic)
            def filtering = new FilteringClassLoader(getClass().classLoader, new FilteringClassLoader.Spec([Action.name, Instrumented.name], [], [], [], [], [], []))
            testClassLoader = new URLClassLoader(transformed.asURLArray, filtering)
            return testClassLoader.loadClass(cl.name)
        }
    
        void classesDir(TestFile dir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    )
    
    // watchCacheEvent is a single "watch event" that is send to users of
    // watchCache. Additionally to a typical "watch.Event" it contains
    // the previous value of the object to enable proper filtering in the
    // upper layers.
    type watchCacheEvent struct {
    	Type            watch.EventType
    	Object          runtime.Object
    	ObjLabels       labels.Set
    	ObjFields       fields.Set
    	PrevObject      runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            System.out.println(message);
            System.exit(1);
        }
    
        protected void daemonStarted(Long pid, String uid, Address address, File daemonLog) {
            // directly printing to the stream to avoid log level filtering.
            new DaemonStartupCommunication().printDaemonStarted(originalOut, pid, uid, address, daemonLog);
            try {
                originalOut.close();
                originalErr.close();
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

                // The registered nodes may contain nodes which are no longer selected.
                // We don't remove them from the list in the first place because it proved to be
                // slower than filtering as needed.
                ModuleIdentifier rootId = null;
                final List<NodeState> candidatesForConflict = Lists.newArrayListWithCapacity(nodes.size());
                for (NodeState ns : nodes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.snakeyaml)             { version { strictly("2.0") }}
            api(libs.testng)                { version { strictly("6.3.1"); because("later versions break test cross-version test filtering") }}
            api(libs.tomlj)                 { version { strictly(tomljVersion) }}
            api(libs.trove4j)               { version { strictly("1.0.20200330") }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    	utilruntime.Must(example.AddToScheme(scheme))
    	utilruntime.Must(examplev1.AddToScheme(scheme))
    }
    
    // GetPodAttrs returns labels and fields of a given object for filtering purposes.
    func GetPodAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
    	pod, ok := obj.(*example.Pod)
    	if !ok {
    		return nil, nil, fmt.Errorf("not a pod")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    It takes a comma (`,`) separated list of module notations.
    In this mode, the existing lock state is still used as input to resolution, filtering out the modules targeted by the update.
    
    ----
    ❯ gradle dependencies --update-locks org.apache.commons:commons-lang3,org.slf4j:slf4j-api
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler.go

    // ScheduleResult represents the result of scheduling a pod.
    type ScheduleResult struct {
    	// Name of the selected node.
    	SuggestedHost string
    	// The number of nodes the scheduler evaluated the pod against in the filtering
    	// phase and beyond.
    	EvaluatedNodes int
    	// The number of nodes out of the evaluated ones that fit the pod.
    	FeasibleNodes int
    	// The nominating info for scheduling cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_waypoint.go

    			},
    				lb.buildWaypointInboundHTTPFilters(nil, cc)...),
    			Name: "direct-http",
    		}
    		chains = append(chains, tcpChain, httpChain)
    		if len(wls) > 0 {
    			// Workload IP filtering happens here.
    			ipRange := []*xds.CidrRange{}
    			for _, wl := range wls {
    				for _, ip := range wl.Addresses {
    					addr, _ := netip.AddrFromSlice(ip)
    					cidr := util.ConvertAddressToCidr(addr.String())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top