Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 412 for patched (0.12 sec)

  1. pilot/pkg/model/envoyfilter_test.go

    	}
    	if patches := cfilter.Patches[networking.EnvoyFilter_INVALID]; len(patches) != 1 {
    		t.Fatalf("unexpected patches of %v: %v", networking.EnvoyFilter_INVALID, cfilter.Patches)
    	}
    	if patches := cfilter.Patches[networking.EnvoyFilter_HTTP_ROUTE]; len(patches) != 1 { // check num of invalid http route patches
    		t.Fatalf("unexpected patches of %v: %v", networking.EnvoyFilter_HTTP_ROUTE, cfilter.Patches)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 04:20:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/WatchedHierarchiesTest.groovy

            when:
            def watched = resolveWatchedFiles(watchable, buildHierarchy([]))
            then:
            rootsOf(watched) == []
            1 * watchable.stream() >> Stream.of()
        }
    
        def "watches empty directory"() {
            def watchable = Mock(WatchableHierarchies)
            def dir = new File("empty").absoluteFile
    
            when:
            def watched = resolveWatchedFiles(watchable, buildHierarchy([
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/crypto/rand/rand_batched_test.go

    		t.Error("incorrect batch result")
    	}
    }
    
    func TestBatchedError(t *testing.T) {
    	b := batched(func(p []byte) error { return errors.New("failure") }, 5)
    	if b(make([]byte, 13)) == nil {
    		t.Fatal("batched function should have returned an error")
    	}
    }
    
    func TestBatchedEmpty(t *testing.T) {
    	b := batched(func(p []byte) error { return errors.New("failure") }, 5)
    	if b(make([]byte, 0)) != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    Michael Hudgins <******@****.***> 1695048765 +0000
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_cache.go

    // Implements XdsCacheEntry interface.
    type clusterCache struct {
    	clusterName string
    
    	// proxy related cache fields
    	proxyVersion    string         // will be matched by envoyfilter patches
    	locality        *core.Locality // identifies the locality the cluster is generated for
    	proxyClusterID  string         // identifies the kubernetes cluster a proxy is in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/FileNotifyInformation.java

        // filter flags
    
        /**
         * Any file name change in the watched directory or subtree causes a change notification wait operation to return.
         * Changes include renaming, creating, or deleting a file.
         */
        public static final int FILE_NOTIFY_CHANGE_FILE_NAME = 0x00000001;
    
        /**
         * Any directory-name change in the watched directory or subtree causes a change notification wait operation to
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/dist/buildtag_test.go

    }
    
    func TestBuildParser(t *testing.T) {
    	for _, tt := range buildParserTests {
    		matched, err := matchexpr(tt.x)
    		if matched != tt.matched || !reflect.DeepEqual(err, tt.err) {
    			t.Errorf("matchexpr(%q) = %v, %v; want %v, %v", tt.x, matched, err, tt.matched, tt.err)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 25 00:02:52 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

     * - When updating the watches, we watch watchable hierarchies registered for this build or old watched directories from previous builds instead of
     *   directories inside them.
     * - At the end of the build
     *   - stop watching the watchable directories with nothing to watch inside
     *   - remember the currently watched directories as old watched directories for the next build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. pkg/test/echo/responses.go

    	}
    	return count
    }
    
    // Match returns a subset of Responses that match the given predicate.
    func (r Responses) Match(f func(r Response) bool) Responses {
    	var matched []Response
    	for _, rr := range r {
    		if f(rr) {
    			matched = append(matched, rr)
    		}
    	}
    	return matched
    }
    
    func (r Responses) String() string {
    	out := ""
    	for i, resp := range r {
    		out += fmt.Sprintf("Response[%d]:\n%s", i, resp.String())
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 22:25:46 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/IncludesArtifactFilter.java

            boolean matched = false;
            for (Iterator<String> i = patterns.iterator(); i.hasNext() & !matched; ) {
                // TODO what about wildcards? Just specifying groups? versions?
                if (id.equals(i.next())) {
                    matched = true;
                }
            }
            return matched;
        }
    
        public List<String> getPatterns() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top