Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 931 for Everything (0.31 sec)

  1. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    // Nothing returns a selector that matches no fields
    func Nothing() Selector {
    	return nothingSelector{}
    }
    
    // Everything returns a selector that matches all fields.
    func Everything() Selector {
    	return andTerm{}
    }
    
    type hasTerm struct {
    	field, value string
    }
    
    func (t *hasTerm) Matches(ls Fields) bool {
    	return ls.Get(t.field) == t.value
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/DelegatingExcludeFactory.java

            this.delegate = delegate;
        }
    
        @Override
        public ExcludeNothing nothing() {
            return delegate.nothing();
        }
    
        @Override
        public ExcludeEverything everything() {
            return delegate.everything();
        }
    
        @Override
        public GroupExclude group(String group) {
            return delegate.group(group);
        }
    
        @Override
        public ModuleExclude module(String module) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		ResourceVersion: "0",
    		Predicate:       storage.Everything,
    	})
    	if err != nil {
    		t.Errorf("Watch with RV=0 should be served from cache: %v", err)
    	}
    
    	_, err = cacher.Watch(context.TODO(), "pod/ns", storage.ListOptions{
    		ResourceVersion: "",
    		Predicate:       storage.Everything,
    	})
    	if err != nil {
    		t.Errorf("Watch with RV=0 should be served from cache: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    stderr '^bad114[/\\]bad114.go:15:2: duplicate method .?Y.?( .*)?$'
    
    
    # With a vendor/modules.txt lacking language versions, the world is topsy-turvy,
    # because we have to guess a uniform version for everything.
    #
    # We always guess Go 1.16, because that was the last version for which
    # 'go mod vendor' failed to record dependency versions, and it has most of
    # the language features added since modules were introduced in Go 1.11.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/AbstractComponentSelectionRulesIntegrationTest.groovy

                    selection.reject("rejecting everything")
                    candidates << selection.candidate.version
                }
                """,
            "reject all with metadata": """{ ComponentSelection selection ->
                    if (selection.metadata != null) {
                        selection.reject("rejecting everything")
                        candidates << selection.candidate.version
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. pkg/util/removeall/removeall.go

    import (
    	"fmt"
    	"io"
    	"os"
    	"syscall"
    
    	"k8s.io/mount-utils"
    )
    
    // RemoveAllOneFilesystemCommon removes the path and any children it contains,
    // using the provided remove function. It removes everything it can but returns
    // the first error it encounters. If the path does not exist, RemoveAll
    // returns nil (no error).
    // It makes sure it does not cross mount boundary, i.e. it does *not* remove
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromConfiguringFunctions.kt

        )
    }
    
    
    private
    class FunctionLambdaTypeDiscovery(
        private val memberFilter: MemberFilter,
        private val configureLambdas: ConfigureLambdaHandler,
    ) : TypeDiscovery {
        /**
         * Collect everything that potentially looks like types configured by the lambdas.
         * TODO: this may be excessive
         */
        override fun getClassesToVisitFrom(kClass: KClass<*>): Iterable<KClass<*>> =
            kClass.memberFunctions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeTestSupport.groovy

                    return factory.allOf(RandomizedIteratorHashSet.of(specs as Set<ExcludeSpec>))
            }
        }
    
        ExcludeSpec nothing() {
            factory.nothing()
        }
    
        ExcludeSpec everything() {
            factory.everything()
        }
    
        ExcludeSpec ivy(String group, String module, IvyArtifactName artifact, String matcher) {
            factory.ivyPatternExclude(
                DefaultModuleIdentifier.newId(group, module),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. pkg/kubemark/controller.go

    	if err != nil {
    		return nil
    	}
    	for _, rc := range rcs {
    		if rc.ObjectMeta.Name == name {
    			return rc
    		}
    	}
    	return nil
    }
    
    func (kubemarkController *KubemarkController) getPodByName(name string) *apiv1.Pod {
    	pods, err := kubemarkController.externalCluster.podLister.List(labels.Everything())
    	if err != nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/mmap/mmap_other.go

    // license that can be found in the LICENSE file.
    
    //go:build (js && wasm) || wasip1 || plan9
    
    package mmap
    
    import (
    	"io"
    	"os"
    )
    
    // mmapFile on other systems doesn't mmap the file. It just reads everything.
    func mmapFile(f *os.File) (Data, error) {
    	b, err := io.ReadAll(f)
    	if err != nil {
    		return Data{}, err
    	}
    	return Data{f, b}, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 454 bytes
    - Viewed (0)
Back to top