Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for filtering (0.21 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableInjection.groovy

                }
            }
        }
    
        static void checkEnvironmentVariableUnset(String key) {
            // We can't "unset" the variable with the API executer provides, but it isn't necessary, thanks to the filtering in
            // build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt
            if (System.getenv().containsKey(key)) {
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-06-08 11:29
    - 1.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         * @return {@code true} to visit siblings nodes of this node as well, {@code false} to skip siblings
         */
        boolean accept(@Nonnull NodeVisitor visitor);
    
        /**
         * Returns a new tree starting at this node, filtering the children.
         * Note that this node will not be filtered and only the children
         * and its descendant will be checked.
         *
         * @param filter the filter to apply
         * @return a new filtered graph
         */
    Registered: 2024-06-12 09:55
    - Last Modified: 2024-06-11 07:23
    - 3.2K bytes
    - Viewed (0)
  3. 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: 2024-06-12 09:55
    - Last Modified: 2024-06-11 09:06
    - 15.2K bytes
    - Viewed (0)
  4. 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: 2024-06-12 18:38
    - Last Modified: 2024-06-11 09:51
    - 20.8K bytes
    - Viewed (0)
  5. 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: 2024-06-15 01:39
    - Last Modified: 2024-06-11 10:20
    - 26.2K bytes
    - Viewed (0)
  6. 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: 2024-06-12 18:38
    - Last Modified: 2024-06-11 09:51
    - 9.8K bytes
    - Viewed (0)
  7. pkg/kube/namespace/filter.go

    			// No need to notify handlers for deletes. The namespace was deleted, so the object will be as well (and a delete could not de-select).
    			// Note that specifically for the edge case of a Namespace watcher that is filtering, this will ignore deletes we should
    			// otherwise send.
    			// See kclient.applyDynamicFilter for rationale.
    			f.namespaceDeletedLocked(ns.ObjectMeta)
    		},
    	})
    Registered: 2024-06-14 15:00
    - Last Modified: 2024-06-10 17:12
    - 9.3K bytes
    - Viewed (0)
  8. 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: 2024-06-15 01:39
    - Last Modified: 2024-06-12 10:12
    - 17K bytes
    - Viewed (0)
  9. 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: 2024-06-14 15:00
    - Last Modified: 2024-06-14 04:34
    - 27.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        resource.getDirectory(),
                        null,
                        resource);
    
                validateBoolean(
                        prefix,
                        "filtering",
                        problems,
                        errOn30,
                        Version.V20,
                        resource.getFiltering(),
                        resource.getDirectory(),
    Registered: 2024-06-12 09:55
    - Last Modified: 2024-06-10 11:04
    - 73.9K bytes
    - Viewed (0)
Back to top