Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for chanOf (0.27 sec)

  1. src/net/http/server.go

    		ctx, cancelCtx = context.WithTimeout(r.Context(), h.dt)
    		defer cancelCtx()
    	}
    	r = r.WithContext(ctx)
    	done := make(chan struct{})
    	tw := &timeoutWriter{
    		w:   w,
    		h:   make(Header),
    		req: r,
    	}
    	panicChan := make(chan any, 1)
    	go func() {
    		defer func() {
    			if p := recover(); p != nil {
    				panicChan <- p
    			}
    		}()
    		h.handler.ServeHTTP(tw, r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    			succeededPods:      2,
    			expectedDeletions:  1,
    			expectedActive:     2,
    			expectedSucceeded:  2,
    			expectedPodPatches: 3,
    			expectedReady:      ptr.To[int32](0),
    		},
    		"status change": {
    			parallelism:        2,
    			completions:        5,
    			backoffLimit:       6,
    			activePods:         2,
    			succeededPods:      2,
    			expectedActive:     2,
    			expectedSucceeded:  2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // will be written to that directory.
    //
    // The build flags are shared by the build, clean, get, install, list, run,
    // and test commands:
    //
    //	-C dir
    //		Change to dir before running the command.
    //		Any files named on the command line are interpreted after
    //		changing directories.
    //		If used, this flag must be the first one in the command line.
    //	-a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. pkg/api/pod/util_test.go

    						t.Errorf("old pod changed: %v", cmp.Diff(oldPod, oldPodInfo.pod()))
    					}
    
    					switch {
    					case enabled || oldPodHasInPlaceVerticalScaling:
    						// new pod shouldn't change if feature enabled or if old pod has ResizePolicy set
    						if !reflect.DeepEqual(newPod, newPodInfo.pod()) {
    							t.Errorf("new pod changed: %v", cmp.Diff(newPod, newPodInfo.pod()))
    						}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

        return (Queue) DISCARDING_QUEUE;
      }
    
      /*
       * Note: All of this duplicate code sucks, but it saves a lot of memory. If only Java had mixins!
       * To maintain this code, make a change for the strong reference type. Then, cut and paste, and
       * replace "Strong" with "Soft" or "Weak" within the pasted text. The primary difference is that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: The current password is incorrect. */
        public static final String ERRORS_no_user_for_changing_password = "{errors.no_user_for_changing_password}";
    
        /** The key of the message: Failed to change your password. */
        public static final String ERRORS_failed_to_change_password = "{errors.failed_to_change_password}";
    
        /** The key of the message: Unknown version information. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// The Copy method will do the right thing if copy returns nil
    	// for some components of an AST but not others, so a good
    	// copy function will only return non-nil for AST values that
    	// need to change.
    	// Copy itself returns either a copy or nil.
    	Copy(copy func(AST) AST, skip func(AST) bool) AST
    
    	// Implement the fmt.GoStringer interface.
    	GoString() string
    	goString(indent int, field string) string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_control_test.go

    			t.Fatal(err)
    		}
    		set, err := spc.setsLister.StatefulSets(set.Namespace).Get(set.Name)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// Change the image to trigger an update
    		set.Spec.Template.Spec.Containers[0].Image = "foo"
    
    		selector, err := metav1.LabelSelectorAsSelector(set.Spec.Selector)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

        return (Queue) DISCARDING_QUEUE;
      }
    
      /*
       * Note: All of this duplicate code sucks, but it saves a lot of memory. If only Java had mixins!
       * To maintain this code, make a change for the strong reference type. Then, cut and paste, and
       * replace "Strong" with "Soft" or "Weak" within the pasted text. The primary difference is that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    				Spec:       example.PodSpec{NodeName: "machine"},
    			},
    			deleted: true,
    		},
    	}
    
    	for _, test := range tests {
    		ready := make(chan struct{})
    		updated := make(chan struct{})
    		var readyOnce, updatedOnce sync.Once
    		var called int
    		deleteValidation := func(ctx context.Context, obj runtime.Object) error {
    			readyOnce.Do(func() {
    				close(ready)
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top