Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,390 for patching (0.51 sec)

  1. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/GwtFluentFutureCatchingSpecialization.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Hidden superclass of {@link FluentFuture} that provides us a place to declare special GWT
     * versions of the {@link FluentFuture#catching(Class, com.google.common.base.Function)
     * FluentFuture.catching} family of methods. Those versions have slightly different signatures.
     */
    @ElementTypesAreNonnullByDefault
    abstract class GwtFluentFutureCatchingSpecialization<V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 08 20:30:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. operator/pkg/helm/testdata/istio-1.3.0-linux.tar.gz

    istio installation name: istio-installer-test version: 1.0 istio-installer/values.yaml # Value.yaml file example for testing # name: value istio-installer/.helmignore # Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. .DS_Store .git...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 19 23:09:45 UTC 2020
    - 617 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/matchingVendorWithCC.out

       > Failed to calculate the value of task ':compileJava' property 'javaCompiler'.
          > Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=11, vendor=matching('customString'), implementation=vendor-specific} for %OS% on %ARCH%.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 513 bytes
    - Viewed (0)
  4. pkg/registry/core/limitrange/storage/storage_test.go

    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNewLimitRange(),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    			{"name": "foo"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 16:56:29 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  5. pkg/kubelet/config/apiserver.go

    	// The Reflector responsible for watching pods at the apiserver should be run only after
    	// the node sync with the apiserver has completed.
    	klog.InfoS("Waiting for node sync before watching apiserver pods")
    	go func() {
    		for {
    			if nodeHasSynced() {
    				klog.V(4).InfoS("node sync completed")
    				break
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 21 19:46:27 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list.matching { it != "b" }.lastIndexOf("c") == 1
            list.matching { it != "b" }.lastIndexOf("b") == -1
            list.matching { it != "b" }.lastIndexOf("z") == -1
        }
    
        def "can get ListIterator over filtered elements"() {
            given:
            list.addAll(["a", "b", "c"])
    
            when:
            def iter = list.matching { it != "b" }.listIterator()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/EmptyFileTree.java

            return true;
        }
    
        @Override
        public FileTree matching(Closure filterConfigClosure) {
            return this;
        }
    
        @Override
        public FileTree matching(Action<? super PatternFilterable> filterConfigAction) {
            return this;
        }
    
        @Override
        public FileTreeInternal matching(PatternFilterable patterns) {
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. istioctl/pkg/checkinject/checkinject_test.go

    				{
    					Name:     "istio-sidecar-injector",
    					Revision: "default",
    					Reason: "No matching namespace labels (istio.io/rev=default, istio-injection=enabled) " +
    						"or pod labels (istio.io/rev=default, sidecar.istio.io/inject=true)",
    				},
    				{
    					Name:     "istio-sidecar-injector-1-16",
    					Revision: "1-16",
    					Reason:   "No matching namespace labels (istio.io/rev=1-16) or pod labels (istio.io/rev=1-16)",
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. src/io/fs/glob.go

    type GlobFS interface {
    	FS
    
    	// Glob returns the names of all files matching pattern,
    	// providing an implementation of the top-level
    	// Glob function.
    	Glob(pattern string) ([]string, error)
    }
    
    // Glob returns the names of all files matching pattern or nil
    // if there is no matching file. The syntax of patterns is the same
    // as in [path.Match]. The pattern may describe hierarchical names such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:25:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/search/search.go

    	"path"
    	"path/filepath"
    	"strings"
    )
    
    // A Match represents the result of matching a single package pattern.
    type Match struct {
    	pattern string   // the pattern itself
    	Dirs    []string // if the pattern is local, directories that potentially contain matching packages
    	Pkgs    []string // matching packages (import paths)
    	Errs    []error  // errors matching the patterns to packages, NOT errors loading those packages
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top