Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for Option (0.26 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		Expired: fmt.Sprintf("%v", time.Unix(expired.Unix(), 0)),
    	}
    	c.claims = replace(c.claims, &v)
    	c.openIDConfig = replace(c.openIDConfig, &v)
    	c.options.JWTAuthenticator.Issuer.URL = replace(c.options.JWTAuthenticator.Issuer.URL, &v)
    	c.options.JWTAuthenticator.Issuer.DiscoveryURL = replace(c.options.JWTAuthenticator.Issuer.DiscoveryURL, &v)
    	for claim, response := range c.claimToResponseMap {
    		c.claimToResponseMap[claim] = replace(response, &v)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.action;
    
    import org.lastaflute.core.message.UserMessage;
    
    /**
     * The keys for message.
     * @author FreeGen
     */
    public class FessMessages extends FessLabels {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    	"k8s.io/kubernetes/pkg/scheduler/internal/cache"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    	"k8s.io/utils/ptr"
    )
    
    var cmpOpts = []cmp.Option{
    	cmp.Comparer(func(s1 labels.Selector, s2 labels.Selector) bool {
    		return reflect.DeepEqual(s1, s2)
    	}),
    	cmp.Comparer(func(p1, p2 criticalPaths) bool {
    		p1.sort()
    		p2.sort()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// TODO(jpbetz): Type checker does not support unions of (<type>, Null).
    				// This will be available when "heterogeneous type" supported is added to cel-go.
    				// In the meantime, the only other option would be to use dynamic types for nullable types, which
    				// would disable type checking. We plan to wait for "heterogeneous type" support.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    			UnavailableReplicas: 4,
    		},
    	}
    
    	tests := []struct {
    		deployment apps.Deployment
    		options    printers.GenerateOptions
    		expected   []metav1.TableRow
    	}{
    		// Test Deployment with no generate options.
    		{
    			deployment: testDeployment,
    			options:    printers.GenerateOptions{},
    			// Columns: Name, ReadyReplicas, UpdatedReplicas, AvailableReplicas, Age
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    	fakeCMClient := &cmfake.FakeCustomMetricsClient{}
    	fakeCMClient.AddReactor("get", "*", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		tc.Lock()
    		defer tc.Unlock()
    
    		getForAction, wasGetFor := action.(cmfake.GetForAction)
    		if !wasGetFor {
    			return true, nil, fmt.Errorf("expected a get-for action, got %v instead", action)
    		}
    
    		if getForAction.GetName() == "*" {
    			metrics := &cmapi.MetricValueList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_node_status_test.go

    		kubeClient.AddReactor("create", "nodes", func(action core.Action) (bool, runtime.Object, error) {
    			return true, nil, tc.createError
    		})
    		kubeClient.AddReactor("get", "nodes", func(action core.Action) (bool, runtime.Object, error) {
    			// Return an existing (matching) node on get.
    			return true, tc.existingNode, tc.getError
    		})
    		kubeClient.AddReactor("patch", "nodes", func(action core.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    			},
    			updateReactor: func() func(action testcore.Action) (bool, runtime.Object, error) {
    				i := 0
    				return func(action testcore.Action) (bool, runtime.Object, error) {
    					if action.GetVerb() == "update" && action.GetResource().Resource == "pods" && action.GetSubresource() == "status" {
    						i++
    						switch i {
    						case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
Back to top