Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,005 for patched (0.37 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/controller/job/success_policy_test.go

    			},
    		},
    		"rules.succeededIndexes is specified; succeededIndexes matched rules": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 2}, {4, 7}},
    			successPolicy: &batch.SuccessPolicy{
    				Rules: []batch.SuccessPolicyRule{{
    					SucceededIndexes: ptr.To("0-2"),
    				}},
    			},
    			wantMessage:          "Matched rules at index 0",
    			wantMetSuccessPolicy: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    ) (out *route.RouteConfiguration) {
    	defer runtime.HandleCrash(runtime.LogPanic, func(any) {
    		IncrementEnvoyFilterErrorMetric(Route)
    		log.Errorf("route patch %s/%s caused panic, so the patches did not take effect", efw.Namespace, efw.Name)
    	})
    	// In case the patches cause panic, use the route generated before to reduce the influence.
    	out = routeConfiguration
    	if efw == nil {
    		return out
    	}
    
    	var portMap model.GatewayPortMap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K 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. pkg/controller/controller_ref_manager_test.go

    			if !ok {
    				return
    			}
    			if p := len(fakePodControl.Patches); p != test.patches {
    				t.Errorf("ClaimPods issues %d patches, want %d", p, test.patches)
    			}
    			for _, p := range fakePodControl.Patches {
    				patch := string(p)
    				if uid := string(test.manager.Controller.GetUID()); !strings.Contains(patch, uid) {
    					t.Errorf("Patch doesn't contain controller UID %s", uid)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 17:19:26 UTC 2021
    - 10.6K bytes
    - Viewed (0)
Back to top